是否有使用 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;
}
}
}