标签:
贴代码:(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;
标签:
原文地址:http://www.cnblogs.com/Teofil/p/4271849.html