0

我正在尝试使用 jquery 显示弹出框,在更新表行后显示成功消息。

这是我正在尝试的代码:

$.ajax({
    type: "POST",
    url: "process.php", 
    dataType: 'html',
    data: { 
        name: $('#name').val(), 
        address: $('#address').val(), 
        city: $('#city').val() 
    },
    beforeSend: function(){$('#loading').show();},
    success:function(data){
        $('#manage_user table > tbody:last').find('tr:first').before(data);

        $('#success').dialog({  
            autoOpen: false,
            height: 'auto',
            width: 350,
            modal: true
        });

        setTimeout("$('#success').hide(); ", 3000);
    },
    error:function (xhr, ajaxOptions, thrownError){
        alert(thrownError);
    }, 
    complete: function(){
        //alert('update success'); 
    }
});

但我的问题是更新完成后,此消息不会显示为弹出窗口。

这是我的 HTML -

<div id="success" title="Hurray,">
    <p>User table is updated.</p>
</div>

谁能告诉我哪里出错了?谢谢你。

4

1 回答 1

0

尝试删除此行

autoOpen: false,

来自官方文档

自动打开

默认值:真

如果设置为 true,对话框将在初始化时自动打开。如果为 false,对话框将保持隐藏状态,直到调用 open() 方法。

编辑

改变你setTimeout的这个

setTimeout("$('#success').dialog('close');", 3000);
于 2013-06-28T12:44:47.600 回答