希望在10秒后淡出div。

尝试了各种方法,但无法使计时器正常工作。

这是代码:

$('#deletesuccess').show();

编辑:

这是完整的代码:
    function refreshTable() {
        //timestamp to get around ie caching issue
var tsTimeStamp= new Date().getTime();


$('#deletesuccess').show().fadeOut();



$.get('table.php',
      {action: "get", time: tsTimeStamp},
      function(data){
        $('#customertable').html(data).fadeIn();
      });
return true;
}

我需要显示div,然后在x秒后将其隐藏。

最佳答案

1.4中的一种简单方法:

$('#deletesuccess').delay(10000).fadeOut();

如果需要,您还可以轻松中止此操作:
$('#deletesuccess').stop(true, true);

09-13 09:19