<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