日期:2014-05-16 浏览次数:20401 次
/**
* Created with IntelliJ IDEA.
* User: H.Kunping
* Date: 13-9-13
* Time: 下午10:50
* To change this template use File | Settings | File Templates.
*/
function goSelected(id){
var arrayValue = id.split("_");
if(arrayValue[0]!=arrayValue[1]){
var superid = arrayValue[0]+"_"+arrayValue[0];
if ($("#"+id)[0].checked){
$("#"+superid).attr("checked", "checked");
} else {
var flag = false;
var $child = $("input[type=checkbox][id^="+arrayValue[0]+"]:not([id$="+arrayValue[0]+"])");
$child.each(function(){
if(this.checked) {
flag=true;
return;
}
});
if(!flag){
$("#"+superid).attr("checked", null);
}
}
}
if(arrayValue[0]==arrayValue[1]){
if ($("#"+id)[0].checked){
$("input[type=checkbox][id^="+arrayValue[0]+"]").attr("checked", "checked");
} else {