javascript – 使用JQuery,如何进行显示,然后添加一些html,然后删除html然后隐藏div?

<div id="message" style="display: none">
 <!-- Here I want to place a message. It should be visible for 3 seconds.Then clear the      div to get ready for the next message. -->
</div>

如何使用JQuery执行以下操作?

1.将消息插入div,其中id =“message”并使div可见.
 2.使消息可见3秒钟.
 3.删除div“message”的内容.
 4.隐藏div然后在必要时从步骤1开始.

先感谢您.

解决方法:

你可以这样做:

var $messageDiv = $('#message'); // get the reference of the div
$messageDiv.show().html('message here'); // show and set the message
setTimeout(function(){ $messageDiv.hide().html('');}, 3000); // 3 seconds later, hide
                                                             // and clear the message
上一篇:Cloudera Manager 5.15.2离线安装笔记(一)


下一篇:让我崩溃的python库matplotlib