复杂动态判断:
$(‘#searchType input‘).on(‘click‘,function(){
if(this.checked==true){
this.checked==true;
$(this).siblings(‘[type="checkbox"]‘).prop(‘disabled‘,‘true‘);
}else{
this.checked==false;
$(this).siblings(‘[type="checkbox"]‘).removeAttr(‘disabled‘);
//
}
});
ajax请求数据量比较大时 要指定它的数据类型
原文:http://www.cnblogs.com/zjpzjp/p/6439689.html