我的网站上有这段代码,当你成功发表评论时,这个 div 就会出现。现在我希望 div 元素在 3-5 秒后消失。这是我的代码:
echo "<div class='granted'><p>Comment posted.</p></div>";
echo "<script type=\"text/javascript\">
setTimeout(function() {
$('.granted').fadeOut('fast');
}, 3000);
</script>";
谢谢!