假设我们有:
<form action="xxx">
<input type="checkbox" id = "checkbox" name="checked" value="1">
<input type="submit">Submit</input>
</form>"
单击提交按钮时,url 应该类似于“xxx?checked=1”。在这种情况下,我想将另一个参数附加到 url。我知道使用隐藏值是一种选择,但我们有更直接的方法吗?请建议。谢谢
事实上,网址取决于您用于发送表单的方法。这是在标签上的method
属性上设置的。<form>
的 URLaction
可以是任何有效的 URL,以便添加额外的属性,例如something=1
,other=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