gpt4 book ai didi

jquery - 在 Bootstrap 中单击按钮时,我的模型窗口闪烁?原因?

转载 作者:行者123 更新时间:2023-11-28 08:59:41 24 4
gpt4 key购买 nike

下面是我的按钮代码

添加测试用例

这是模型窗口的脚本。

$("#check_all").click(function(event) {
if(this.checked){

$(".test").each(function()
{
this.checked=true;
});

}
else
{
/* this.checked=true; */
this.checked=false;
$(".test").each(function(){
this.checked=false;
});
}
});

我在模型窗口中使用表格。有人能猜出问题吗?

最佳答案

当您使用“.each”时,建议使用新的上下文以便复制当前值以供使用。

你能试试这个吗?

$("#check_all").click(function(event) {
var isChecked = this.checked = !this.checked;
$(".test").each(function(){
(function (self) {
self.checked= isChecked;
})(this);
});
});

关于jquery - 在 Bootstrap 中单击按钮时,我的模型窗口闪烁?原因?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26972104/

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