是否有使用Ajax j-query的多个复选框的脚本或代码。 ?我需要这种类型的代码非常紧急..我通过提交按钮完成了这个,但现在我需要使用Ajax ..我使用多个检查取消选中框
function checkUncheckAll(theElement) {
var theForm = theElement.form, z = 0;
for(z=0; z<theForm.length;z++){
if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
theForm[z].checked = theElement.checked;
}
}
}
答案 0 :(得分:0)
试试这个演示 http://jsfiddle.net/devmgs/Udr3W/1/
<input type="checkbox" name="checkall" onclick="checktoggle(this)" />
<input type="checkbox" name="check1" />
<input type="checkbox" name="check2" />
<input type="checkbox" name="check3" />
<input type="checkbox" name="check4" />
<input type="checkbox" name="check5" />
function checktoggle(obj) {
// alert($(obj).prop("checked"));
$("input[type='checkbox']").prop("checked",$(obj).prop("checked"));
}