贴代码:(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;
时间: 2024-10-08 05:08:33