JQuery设置Radiobutton状态(是否选中)
贴代码:(HTML)
<td colspan=‘4‘ style="align:left"> <input type="radio" style=‘width:10px‘ checked=‘checked‘ name="type" value="行政村" />行政村 <input type="radio" style=‘width:10px‘ name="type" value="自然村" />自然村 </td>
JQuery代码:
$(‘input[name = "type"]:eq(0)‘).attr("checked", false); //set first button checked, index begin: 0; $(‘input[name = "type"]:eq(1)‘).attr("checked", true); //set second button checked;
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。