我有一个Gridview,每行有两个复选框,在第二个复选框的检查上我希望自动检查第一个复选框。我正在寻找Clent边脚本...请帮忙
答案 0 :(得分: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'));
});;