假设我们有:
<form action="xxx">
<input type="checkbox" id = "checkbox" name="checked" value="1">
<input type="submit">Submit</input>
</form>"
点击提交按钮时,网址应为“xxx?checked = 1”。在这种情况下,我想在url中附加另一个参数。我知道使用隐藏值是一种选择,但我们有更直接的方法吗?请建议。感谢
答案 0 :(得分:0)
事实上,网址取决于您用来发送表单的方法。这是在the method
attribute上的the <form>
tag上设置的。
action
的网址可以是任何有效的网址,因此要添加额外的属性,例如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