WordPress:复选框的表单问题

发布于 2024-11-04 11:17:22 字数 605 浏览 0 评论 0原文

我有一个表单,在页面模板中编写:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟酒忠诚 2024-11-11 11:17:22
<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>

您有两个具有相同 name= 属性的复选框。给它们起独特的名字。

<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>

You have two checkboxes with the same name= attribute. Give them unique names.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文