Jquery Fancybox - $.post() 回发

发布于 2024-10-01 18:19:00 字数 462 浏览 7 评论 0原文

我目前将元素分配给 Fancybox,如下所示:

$(document).ready(function(){
$(".popup").fancybox({
 'speedIn'  : 600, 
 'overlayOpacity'  : 0.7,
 'speedOut'  : 200
});

}); 当我使用 $.post() 加载远程内容时,其中一些内容包含...

<a class="popup" href="#somebox">Click me</a>.

单击链接不会执行任何操作,可能是因为准备好的文档仅在页面加载时处理一次。我怎样才能“重新处理”这个,以便远程内容中的链接打开 fancybox?

我环顾四周,大多数解决方案都是基于 ASP.net 的。我目前使用标准 PHP 和 jQuery。

谢谢。

I currently assign elements to Fancybox as follows:

$(document).ready(function(){
$(".popup").fancybox({
 'speedIn'  : 600, 
 'overlayOpacity'  : 0.7,
 'speedOut'  : 200
});

});
When I load remote content using $.post(), some of that content contains...

<a class="popup" href="#somebox">Click me</a>.

Clicking the link does nothing, probably because the document ready only gets processed once on page load. How can I 'reprocess' this so that links in the remote content open up the fancybox?

I've looked around must most of the solutions are ASP.net based. I am currently using standard PHP and jQuery.

Thanks.

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

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

发布评论

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

评论(1

坏尐絯℡ 2024-10-08 18:19:00

您可以使用 .live() 在这些链接上设置自己的点击事件:

$(".popup").live('click', function(){
  $.fancybox({
    'speedIn': 600, 
    'overlayOpacity': 0.7,
    'speedOut': 200,
    'href': $(this).attr('href')
  });
  return false;
});

You could set your own click event on these links, using .live():

$(".popup").live('click', function(){
  $.fancybox({
    'speedIn': 600, 
    'overlayOpacity': 0.7,
    'speedOut': 200,
    'href': $(this).attr('href')
  });
  return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文