2013-10-23 95 views
-2

是否有使用Ajax j-query的多個複選框的腳本或代碼。 ?我需要這種類型的代碼非常迫切的..我已經做到了這一點,通過提交按鈕,但現在我需要使用Ajax ..我有使用多個檢查取消複選框使用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; 
    } 
    } 
} 
+1

我在此處看不到任何ajax代碼 – underscore

+0

我需要ajax代碼或此解決方案的任何腳本 –

+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")); 
}