您好我有这样的表单代码,如下所示
<td>
<form action="pay/index.php">
<input type="submit" class="btn btn-primary">
<input type="hidden" value="1.00" name="amount">
</form>
</td>
结果是index.php?amount=1.00
,我想创建
index.php?amount=1.00&value=1
我应该如何在其后添加&value=1
?
答案 0 :(得分:0)
当您使用method="GET"
(默认值)时,所有指定的输入都将成为URL参数。因此,您只需添加另一个名为value
的隐藏输入。
<form action="pay/index.php">
<input type="submit" class="btn btn-primary">
<input type="hidden" value="1.00" name="amount">
<input type="hidden" value="1" name="value">
</form>