gpt4 book ai didi

javascript - 如果 jQuery 对话框隐藏则调用函数

转载 作者:行者123 更新时间:2023-12-02 15:46:12 24 4
gpt4 key购买 nike

我使用 jQuery UI 显示对话框,但我不知道如果用户关闭对话框如何调用函数。这是代码:

    function Configure_Popup() {
$("#dialog").dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 100
},
hide: {
effect: "blind",
duration: 100
}
});

$(".opener").click(function () {
$("#dialog").dialog("open");
});
}

请问我该怎么做?

最佳答案

您应该使用close事件:

$("#dialog").dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 100
},
hide: {
effect: "blind",
duration: 100
},
close: function() {
console.log("User closed the dialog");
// Call your function here
}
});

关于javascript - 如果 jQuery 对话框隐藏则调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32183619/

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