使用 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.在id=“message”的div中插入一条消息,并使div可见。 2.使消息可见 3 秒。 3.删除div“message”的内容。 4.隐藏 div,然后根据需要从步骤 1 开始。
提前谢谢您。
<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>
How can I do the following using JQuery ?
1.Insert a message into div with id="message" and make div visible.
2.Make the message visible for 3 seconds.
3.Remove the content of div "message".
4.Hide the div and then if necessary start with step 1.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我是这样做的:
示例:
工作原理
额外示例消息样式:
```
Here's how I do it:
Examples:
How it works
Bonus Sample Message Styling:
```
你可以这样做:
You can do something like this:
这是一个小脚本,以 3 秒的间隔循环显示消息。 也许这不是您所需要的,但我希望它可以帮助您实现您想要的。
This is a small script which cycles through messages with an interval of 3 seconds. Maybe it's not what you need but i hope it helps you for achive what you want.
看看jGrowl。 非常好并且可配置。
Take a look at jGrowl. Very nice and configurable.