gpt4 book ai didi

javascript - 多个弹出窗口 - 超出最大调用堆栈大小 - jQuery 错误

转载 作者:行者123 更新时间:2023-12-03 03:04:40 25 4
gpt4 key购买 nike

我弹出一些 html 和删除按钮。单击删除按钮时,对话框打开,我得到了

"Uncaught RangeError: Maximum call stack size exceeded - jQuery Error"

$("body").delegate('.delete','click',function(e){
BootstrapDialog.confirm('Are you sure you want to remove this post?', function(e,result){
alert("HI");
});
}
});

谁能给我一个可行的解决方案?

最佳答案

您可能有多个使用 .delete 类的项目。您可以使用 id 代替类

$("#delete").on("click",function(){
BootstrapDialog.confirm('Are you sure you want to remove this post?', function(e,result){
alert("HI");
});

关于javascript - 多个弹出窗口 - 超出最大调用堆栈大小 - jQuery 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47220644/

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