关闭后无法重新打开对话框

时间:2012-07-04 08:27:16

标签: php jquery html

这是我的问题......

我有以下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页面只打印一个&#34; lol&#34;回声&#34; lol&#34 ;;

这是我的HTML:

<div style="height: 200px; min-height: 109px; width: auto;" class="ui-dialog-content  ui-widget-content" id="dialog">
  </div>

谢谢!

1 个答案:

答案 0 :(得分:1)

请取消e.preventDefault();

请参阅此演示:http://jsfiddle.net/ngwJ3/

原因:http://api.jquery.com/event.preventDefault/:如果调用此方法,则不会触发事件的默认操作。

希望此帮助:)