Gridview があり、各行に 2 つのチェック ボックスがあり、2 番目のチェック ボックスをオンにすると、最初のチェック ボックスが自動的にオンになります。Clent 側のスクリプトを探しています...助けてください
質問する
241 次
1 に答える
1
これを試して
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'));
});;
于 2012-05-28T06:16:29.490 に答える