让多个lightbox(facebox)依次执行

发布于 2024-09-04 19:12:05 字数 324 浏览 7 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事还在继续 2024-09-11 19:12:05

如果您有可用的关闭事件(我从未使用过facebox插件),我会这样做:

jQuery.facebox('blah'); 
jQuery.one('faceboxClose', function () { jQuery.facebox('blah2'); });

If you have a close event available (I've never used the facebox plugin) I would do something like this:

jQuery.facebox('blah'); 
jQuery.one('faceboxClose', function () { jQuery.facebox('blah2'); });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文