gpt4 book ai didi

javascript - 点击事件无效

转载 作者:行者123 更新时间:2023-11-30 10:39:00 25 4
gpt4 key购买 nike

在 chrome 中,没有错误,没有警告,甚至没有信息。它只是行不通。

 $(document).ready(function () {
var cbxAdmins = $("input[name^=hasAdmin][type=checkbox]");
for (var i = 0; i < cbxAdmins.Length; i++) {

cbxAdmins[i].click(function () {
var checkAll = this.checked;
var permiCheckboxes = $(this).parents("tr:first").find(':checkbox');

if (checkAll) {
$(permiCheckboxes).attr('checked', true);
}
else {
$(permiCheckboxes).attr('checked', '');
}
});
}


});

最佳答案

您不需要 for 遍历数组中的所有元素,jQuery 足够智能,可以单独应用点击事件。试试这个:

$(document).ready(function () {
$("input[name^=hasAdmin][type=checkbox]").click(function () {
$(this).closest("tr").find('[type=checkbox]').prop('checked', this.checked);
});
});

感谢 Fabricio Matte,我还清理了一些逻辑。

关于javascript - 点击事件无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12277222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com