我使用以下代码在按下CTRL+时打开了 JQuery UI 对话框。Q
$(window).keydown(function (e){
if (e.ctrlKey && e.keyCode == 81){
$('<div><center>Download the files now?</center></div>').dialog({
title: '<b>Download</b>',
modal: true,
autoOpen: true,
height: 400,
width: 800,
resizable: false,
buttons: {
"Yes": function(){
// Code to download the Files
$(this).dialog('close');
},
"Close": function(){
$(this).dialog('close');
}
}
});
return false;
}
});
但是我怎样才能在再次按下它们时关闭对话框?我想用CTRL+实现对话框的切换效果Q。