在表单提交中,是否提交了其他任何内容但值?我可以提交值和数据组属性吗?
<input type="text" id="theInput" data-group="5" value="the value" />
我只是在谈论PHP表单提交
答案 0 :(得分:5)
仅提交值,但您可以为数据组值添加隐藏元素。另请注意,您应使用name
属性来标识参数键:
<input type="text" id="theInput" name="theInput" data-group="5" value="the value" />
<input type="hidden" name="theInputGroup" value="5" />
这将返回服务器,请求参数为:
theInput
⇒the value
theInputGroup
⇒5
旁注:如果您通过ajax提交表单,则只需将组直接添加到参数列表中,而不是添加隐藏的输入。