我正在使用一些像这样的 jQueryUI 对话框:
$("#PersonDialog").dialog({
bgiframe : true,
autoOpen : false,
closeOnEscape : true,
resizable : false,
height : 150,
modal : true,
open: function(){
activeWindow="dialog"
},
close: function(){
activeWindow="person"
}
....
....
})
当按下转义键时,我也有一些想要关闭的 div。我也使用这个答案中的代码,但它没有解决我的问题:
$("body").bindFirst("keydown", function(e) {
console.info(activeWindow)
if (e.keyCode == 27) {
switch(activeWindow){
case "dialog":
//do something
break;
case "person":
//do something else
break;
....
}
}
})
$.fn.bindFirst = function(name, fn) {
this.on(name, fn);
this.each(function() {
var handlers = $._data(this, 'events')[name.split('.')[0]];
var handler = handlers.pop();
handlers.splice(0, 0, handler);
});
};
我的问题是,当对话框打开时,我按转义键,(div 和对话框)都关闭并console.info(activeWindow)
返回“人”。我想这closeOnEscape
是首先触发的,然后是 keydown 事件。有没有办法改变这个?