表单提交发送其他元素属性?

时间:2012-02-25 03:47:39

标签: php jquery forms attributes submission

在表单提交中,是否提交了其他任何内容但值?我可以提交值和数据组属性吗?

 <input type="text" id="theInput" data-group="5" value="the value" />

我只是在谈论PHP表单提交

1 个答案:

答案 0 :(得分:5)

仅提交值,但您可以为数据组值添加隐藏元素。另请注意,您应使用name属性来标识参数键:

<input type="text" id="theInput" name="theInput" data-group="5" value="the value" />
<input type="hidden" name="theInputGroup" value="5" />

这将返回服务器,请求参数为:

  • theInputthe value
  • theInputGroup5

旁注:如果您通过ajax提交表单,则只需将组直接添加到参数列表中,而不是添加隐藏的输入。