如何在facebox中模拟close()

发布于 2024-09-06 16:21:23 字数 152 浏览 8 评论 0原文

我在我的页面之一中使用 Facebox 弹出窗口。我在弹出对话框中有一个按钮。当我单击该按钮时,facebox 弹出窗口应该关闭(与我们按弹出窗口外部时关闭的方式相同)。怎么做呢?

另外,当按下该按钮时,我正在执行一些 Ajax 操作,因此我无法覆盖 onClick 事件。

I am using facebox popup in one of my pages. I am having a button in the popup dialog. When I click that button the facebox popup should close (the same way it closes when we press outside the popup). How to do that?

Also, I am doing some Ajax stuff when that button is being pressed so I cannot override the onClick event.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

带上头具痛哭 2024-09-13 16:21:23
$(function() {
  $('#button-id').click($.facebox.close);
});

只要您实际上没有通过 onclick 设置事件处理程序,添加处理程序就不会覆盖现有的处理程序。

$(function() {
  $('#button-id').click($.facebox.close);
});

as long as you aren't actually setting event handlers through onclick, adding handlers won't override existing ones.

时光倒影 2024-09-13 16:21:23
<a href='javascript:void(0);' onclick='jQuery("#facebox_overlay").click();'>close</a>

这是一个 onclick 版本 hack

<a href='javascript:void(0);' onclick='jQuery("#facebox_overlay").click();'>close</a>

here's an onclick version hack

始于初秋 2024-09-13 16:21:23

要在代码中关闭 facbox,请触发:

jQuery(document).trigger('close.facebox');

For close the facbox in code, trigger:

jQuery(document).trigger('close.facebox');
甜`诱少女 2024-09-13 16:21:23

我在关闭 Facebox 时遇到问题,打开它时出现的黑色覆盖层没有关闭。

我使用的解决方案是这样的:

  $(document).bind('close.facebox', function() {
    $('#back').hide();
  })

背面是深色覆盖层的ID

希望这有用

来自西班牙的问候

I had a problem closing facebox, and was thay the dark overlay that appeared when opened it, didn´t close.

the solution I used was this one:

  $(document).bind('close.facebox', function() {
    $('#back').hide();
  })

back is the id of the dark overlay

Hope this is usefull

Greetings from Spain

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