当第一次输入被修改时,JQuery可以将一个单选按钮同步到另一个吗?
例如:
<input id="form1" type="radio" name="option-1" value="Mastercard">
If I check something here<br>
<input id="form2" type="radio" name="contact[option-1]" value="Mastercard">
It will be checked here<br>
JQuery可以这样做吗?
答案 0 :(得分:2)
$("#form1").click(function(){
$("#form2").attr("checked",$(this).is(':checked'));
});
<强> Demo 强>