這是從原來的posted here如何讓jQuery UI的對話框中使用「越獄」鍵
我有一個jQuery UI Dialog頁面的重新問題開閉時的fancybox,我從裏面的鏈接打開的fancybox這樣的對話窗口。
典型用戶界面對話框的init是這樣的:
$("#dialog-modal").dialog({
height: 240,
modal: true
}); // dialog
...和典型的fancybox(V2.1.1在這個例子中)INIT喜歡:
$(".fancybox").fancybox({
closeClick: false,
helpers: {
title : { type : 'inside' }
}
}); // fancybox
...到目前爲止所以好,沒什麼特別的。然後將HTML:
<div id="dialog-modal" title="jQuery UI modal dialog">
<p>You should be able to close this UI Dialog using the "escape" key.</p><br />
<a class="fancybox" href="images/01.jpg" title="Press the 'escape' key to close Fancybox" >Open Fancybox</a>
</div>
現在,問題是,如果我使用「escape
」鍵關閉的fancybox,兩者的fancybox和用戶界面對話框(從那裏我發起的fancybox)關閉。
雙方的fancybox和用戶界面對話框可以使用escape
關鍵,但理想我想保持用戶界面對話框關閉的fancybox(與escape
鍵)打開後......如果關閉的fancybox關閉與實例close
按鈕,UI對話框保持打開狀態。我想創建一個DEMO here。
那麼,如何關閉Fancybox使用escape
密鑰而不關閉從我打開Fancybox的UI對話框?
「有些向下票數下跪反應「......沒有評論的投票是無用的;) – JFK