在index.php& value = 1

时间:2017-09-29 21:50:19

标签: javascript php css

您好我有这样的表单代码,如下所示

<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

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>