2012-05-28 46 views

回答

1

如果您正在使用jQuery,你可以寫功能,將通過每第二個複選框的表格和綁定change事件迭代試試這個

var rows = $("#your table tr:gt(0)"); // skip the header row 

rows.each(function(index) { 
    var lastCheckbox = $("td:nth-child(youlast checkbox cell) input", this); 
    var firstCheckBox=$("td:nth-child(firstCheckboxCellIndex) input", this); 
    $(lastCheckbox).change(function(e) { $(firstCheckBox).attr('checked',$(this).is(':checked')); 
});; 
+0

您好我chnaged這樣的代碼$(文檔).ready(函數(){varshares = $(「#GrdMenuConfig tr:gt(0)」); rows.each(function(index){ var lastCheckbox = $(「td:nth-​​child(4)input」,this); var firstCheckBox = $(「td:nth-​​child(3)input」,this); $(lastCheckbox).change(function(e ){ $(firstCheckBox).attr('checked',$(this).is(':checked')); }); }); }); 但它沒有網絡...! – Nikhil

相關問題