我正在尝试使用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>
有谁能告诉我哪里出错了? 谢谢。
答案 0 :(得分:0)
尝试删除此行
autoOpen: false,
<强>的AutoOpen 强>
默认值:true
如果设置为true,则对话框将在初始化时自动打开。如果为false,则对话框将保持隐藏,直到调用open()方法。
修改强>
将您的setTimeout
归为此
setTimeout("$('#success').dialog('close');", 3000);