微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐