PHP
·
发表于 5年以前
·
阅读量:8290
HTML代码如下:
<input id="first" type="radio" value="0" name="jizai" id="0"/>否
<input id="second" type="radio" value="1" name="jizai" id="1"/>是
jquery中,radio的选中与否可以这么设置
$("#first").attr("checked","checked");
$("#second").removeAttr("checked");