gpt4 book ai didi

jquery - 防止关闭 JQuery 弹出窗口

转载 作者:行者123 更新时间:2023-12-01 04:49:44 28 4
gpt4 key购买 nike

我的页面中有以下 JQuery 弹出窗口。

$('#SubSkill').dialog({
autoOpen: false,
draggable: false,
resizable: false,
bgiframe: false,
modal: true,
width: dWidth,
height: dHeight,
title: "Enter Job Sub Skill Information",
open: function (type, data) {
$(this).parent().appendTo("form");
}
});

当我点击Escape键时,它会关闭。如何防止按下此键时关闭弹出窗口?

最佳答案

您可以使用closeOnEscape: false选项:

$('#SubSkill').dialog({
closeOnEscape: false,
autoOpen: false,
draggable: false,
resizable: false,
bgiframe: false,
modal: true,
width: dWidth,
height: dHeight,
title: "Enter Job Sub Skill Information",
open: function (type, data) {
$(this).parent().appendTo("form");
}
});

<强> References

关于jquery - 防止关闭 JQuery 弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22347343/

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