js代码:
//省级选中时,校级默认选中
function sjtjcheck() {
//attr在easyui中无用,用prop代替
if ($('#sjtj').prop("checked")) {
$('#xjtj').prop("checked", "checked");
}
}
对应页面代码:
<input type="checkbox" class="easyui-checkbox" id="xjtj" name="tjjb" value="xj" />校级
<input type="checkbox" class="easyui-checkbox" id="sjtj" name="tjjb" value="sj" onclick="sjtjcheck()"/>省级