这是我的问题...
我有以下 jQuery UI 脚本:
<script>
$(function() {
$( "#dialog" ).dialog({
autoOpen: false,
show: "slideUp",
hide: "slideDown",
height: "300",
width: "400",
title: "Test pop-up",
buttons: {
"Close": function(){
$(this).dialog("close");
}
}
}
);
$( "p.diag").click(function(e) {
var monUrl = 'test2.php';
$('#dialog').load(monUrl, function(response, status) {
$('#test_dialog').html(response);
});
e.preventDefault();
});
$( "p.diag").click(function() {
$( "#dialog" ).dialog("open");
});
这是一个非常简单的代码,当我单击 p.diag 类时它会正确打开我的对话框,但在我关闭它后它不会重新打开。
test2.php 页面只打印一个带有回显“lol”的“lol”;
这是我的 HTML:
<div style="height: 200px; min-height: 109px; width: auto;" class="ui-dialog-content ui-widget-content" id="dialog">
</div>
谢谢 !