我创建了一个wordpress网站,并有4个按钮显示不同的$金额。 我想保存选择哪个按钮。 当我单击“提交”按钮时,我希望它使用该数字。
<h2>Amount </h2>
<a href="#" role="button">
$51.00
</a>
<a href="#" role="button">
$110.00
</a>
<a href="#" role="button">
$65.00
</a>
<a href="#" role="button">
$278.00
</a>
<a href="#" role="button">
Submit
</a>
这就是我所拥有的,我不知道下一步。
答案 0 :(得分:1)
使用实际表格怎么办?
<h2>Amount</h2>
<form action="" method="get">
<input id="51" type="radio" name="amount" value="51">
<label for="51">$51.00</label>
<input id="110" type="radio" name="amount" value="110">
<label for="110">$110.00</label>
<input id="65" type="radio" name="amount" value="65">
<label for="65">$65.00</label>
<input id="278" type="radio" name="amount" value="278">
<label for="278">$278.00</label>
<input type="submit">
</form>
这里是如何设置样式的: https://jsbin.com/boxifiguqo/2/edit?html,css,output