与えられた次のコード:http: //jsfiddle.net/UsZG8/1/
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/base/jquery-ui.css"/>
<script type="text/javascript">
$(document).ready(function() {
$("#modalDiv").dialog({
modal: false,
autoOpen: false,
height: '500',
width: '750',
draggable: true,
resizable: false,
position: 'center',
closeOnEscape: true,
});
$('#1stPage').click(
function() {
url = 'mypage.html';
$("#modalDiv").dialog('option', 'title', 'Test 1st');
$("#modalDiv").dialog("open");
$("#modalIFrame").attr('src',url);
return false;
});
$('#2ndPage').click(
function() {
url = 'myPage2.html';
$("#modalDiv").dialog('option', 'title', 'Test 2nd');
$("#modalDiv").dialog("open");
$("#modalIFrame").attr('src',url);
return false;
});
});
</script>
</head>
<body>
<a id="1stPage" href="#">1st link</a><br><br>
<a id="2ndPage" href="#">2nd link</a>
<div id="modalDiv"><iframe id="modalIFrame" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" title="Dialog Title"></iframe></div>
</body>
</html>
リンクの1つをクリックするだけで、closeOnEscapeは正常に機能します。escを押す前に両方のリンクをクリックすると、closeOnEscapeは機能しません。
何かが足りなかったようで、どこに問題があるのかわからなかった。助けてくれてありがとう:)。