我目前有以下AJAX响应,它显示从目标页面检索到的一些HTML:
success: function (data, textStatus, jqXHR) {
$("#RoomAddResponse").html(data);
$("#RoomAdd")[0].reset();
如何更改它以便HTML数据显示5秒钟,然后再次隐藏?
答案 0 :(得分:4)
使用将清空#RoomAddResponse
success: function (data, textStatus, jqXHR) {
$("#RoomAddResponse").html(data);
setTimeout(function(){
$("#RoomAddResponse").empty();
}, 5000);
$("#RoomAdd")[0].reset();
}