5

假设我们有:

 <form action="xxx">
     <input type="checkbox" id = "checkbox" name="checked" value="1">
     <input type="submit">Submit</input>
 </form>"

单击提交按钮时,url 应该类似于“xxx?checked=1”。在这种情况下,我想将另一个参数附加到 url。我知道使用隐藏值是一种选择,但我们有更直接的方法吗?请建议。谢谢

4

1 回答 1

3

事实上,网址取决于您用于发送表单的方法。这是标签上method属性上设置的。<form>

的 URLaction可以是任何有效的 URL,以便添加额外的属性,例如something=1other=2您可以设置以下内容:

<form action="xxx?something=1&other=2">
    <input type="checkbox" id="checkbox" name="checked" value="1">
    <input type="submit">Submit</input>
</form>

提交表单现在将发送GET请求xxx?something=1&other=2&checked=1

于 2013-06-08T01:08:46.143 回答