让多个lightbox(facebox)依次执行
我有一个 php 应用程序,有时会在同一页面上创建两个灯箱 - 结果是最后一个被调用的灯箱是唯一显示的。我如何确保它们一个接一个地显示?
我在页面底部调用一个 Facebox,如下所示:
jQuery.facebox('blah');
目前多个 Facebox 的调用方式如下:
jQuery.facebox('blah');jQuery.facebox('blah2');
但只有 blah2 会显示。
我需要等待“blah”关闭才能调用“blah2”......
I have a php application that sometimes creates two lightboxes on the same page - the result is the last one to be called is the only one shown. How might I ensure that they show one after anohter?
I call a facebox at the bottom of the page like so:
jQuery.facebox('blah');
Currently multiple facebox's are called like so:
jQuery.facebox('blah');jQuery.facebox('blah2');
But only blah2 will ever show.
I need to wait for 'blah' to close before calling 'blah2'...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有可用的关闭事件(我从未使用过facebox插件),我会这样做:
If you have a close event available (I've never used the facebox plugin) I would do something like this: