我有一个包含两个单选按钮和一个按钮的表单。我想根据选择的两个单选按钮中的哪一个来更改按钮的值。我的猜测是使用 jQuery 比使用 PHP 更好,但如果这是错误的假设,请告诉我。
这是 HTML 的示例:
<form>
<ul>
<li>
<input type="radio" name="basic" value="basic1">
<label for="basic1">Basic 1</label>
</li>
<li>
<input type="radio" name="basic" value="basic2">
<label for="basic2">Basic 2</label>
</li>
</ul>
<button id="basic1" name="startReg" type="submit" value="basic1">Confirm</button>
</form>
简而言之,我想用选中的单选按钮的值替换按钮 id 和值。因此,如果选择了第二个单选按钮,则按钮标签将如下所示:
<button id="basic2" name="startReg" type="submit" value="basic2">Confirm</button>