jQuery fadein 淡出可折叠网格
我有一个可折叠的网格,当用户单击链接时,它会淡入和淡出。 问题是,当用户快速多次单击链接时,多个网格会打开并且不会淡出。这个问题仅在 Firefox 中出现,在 IE 中不出现。
I have a collapsable grid which fades in and out when ever user click on a link.
the problem is that when ever user clicks on the link multiple times very quickly,,multiple grids open and do not fade out..this problem is only seen in Firefox not in IE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果上一个动画尚未完成,您可能会遇到此问题。确保停止之前的动画。例如:
这里的键是
stop()
。If the previous animation hasn't finished, you could get this problem. Make sure you stop previous animations. For example:
The key here is
stop()
.