我正在尝试使用 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>
谁能告诉我哪里出错了?谢谢你。