WordPress:复选框的表单问题
我有一个表单,在页面模板中编写:
<form enctype="multipart/form-data" method="post" action="merci">`
[... some inputs of different types: text, password, file ...]
<input type="checkbox" name="themes" value="$taxonomy_term_id"/>
<label for="themes" > $term_name </label>
<input type="checkbox" name="themes" value="$taxonomy_term_id2"/>
<label for="themes" > $term_name2 </label>
[...]
<input type="submit" />
</form>
该表单运行良好,但是当我选中某些复选框时,提交后,我收到错误 404 页面未找到(操作页面“merci”)。如果没有选中任何复选框,则所有工作都会重定向到“merci”页面。
有什么线索吗?
i have a form, wrote in a page template:
<form enctype="multipart/form-data" method="post" action="merci">`
[... some inputs of different types: text, password, file ...]
<input type="checkbox" name="themes" value="$taxonomy_term_id"/>
<label for="themes" > $term_name </label>
<input type="checkbox" name="themes" value="$taxonomy_term_id2"/>
<label for="themes" > $term_name2 </label>
[...]
<input type="submit" />
</form>
The form is working good, but when i check some checkbox, after submitting, i got error 404 page not found ( the action page "merci" ). If no checkbox are checked, all work and i redirect to the "merci" page.
Any clue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有两个具有相同
name=
属性的复选框。给它们起独特的名字。You have two checkboxes with the same
name=
attribute. Give them unique names.