ダイアログボックスを閉じた後、Firefox 12でドキュメントのボタンが再表示されない理由を知っていますか?
<html>
<head>
<link type="text/css" href="jqueryui/css/smoothness/jquery-ui-1.8.20.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="jqueryui/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="jqueryui/js/jquery-ui-1.8.20.custom.min.js"></script>
<style></style>
<script type="text/javascript">
$(document).ready(function() {
$("#click").click(function() {
$("#dialog").attr("title", "save").text("This is the dialog box!").dialog({
buttons: {
"OK": function() {
$(this).dialog("close");
}
}
});
});
});
</script>
</head>
<body>
<div id="dialog" title="Basic dialog">
<input type="button" value="click" id="click" />
</div>
</body>
</html>