-2

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

1 回答 1

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"));   
}
于 2013-10-23T12:11:14.757 回答