Jquery HTML显示然后隐藏

时间:2013-11-26 14:41:56

标签: ajax jquery

我目前有以下AJAX响应,它显示从目标页面检索到的一些HTML:

success: function (data, textStatus, jqXHR) {
$("#RoomAddResponse").html(data);
$("#RoomAdd")[0].reset();

如何更改它以便HTML数据显示5秒钟,然后再次隐藏?

1 个答案:

答案 0 :(得分:4)

使用将清空#RoomAddResponse

的函数设置超时
success: function (data, textStatus, jqXHR) {
    $("#RoomAddResponse").html(data);
    setTimeout(function(){
        $("#RoomAddResponse").empty();
    }, 5000);
    $("#RoomAdd")[0].reset();
}