可与动态加载的 html 配合使用的灯箱

发布于 2024-09-29 22:36:21 字数 249 浏览 5 评论 0原文

我目前正在网站首页上使用“阅读更多”功能来加载较大的文章部分。它从一个单独的 html 文件加载一个 ID 为 mainarticle 的 div。它使用了 jQuery 函数 .load(),但此部分中的灯箱不起作用。

我知道这与 .live() 有关,但我无法确定需要更改为 live() 函数的函数。

我目前正在使用 jQuery lightbox;有谁知道现有的灯箱可以与加载的内容一起使用,或者我如何修改灯箱才能工作?

谢谢。

I'm currently using a read more function on the frontpage of my site to load in larger sections of articles. It loads from a seperate html file a div with the id mainarticle. It makes use of the jQuery function .load() but the lightbox within this section does not work.

I know it is something to do with .live() but I am unable to pinpoint the function that I need to change to a live() function.

I'm currently using jQuery lightbox; does anyone know of an existing lightbox that works with loaded in content, or how I can modify one to work?

Thanks.

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

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

发布评论

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

评论(1

鸩远一方 2024-10-06 22:36:21

live 的作用是将事件附加到页面上存在或将出现在页面上的元素。

您可能已打开灯箱并绑定到某些元素的单击事件。将该代码从 更改

$('element').bind('click', function(event){
  open lightbox here
});

$('element').live('click', function(event){
  open lightbox here
});

即可完成。

What live does, is attach events to elements that exist on page or will appear on page.

You probably have lightbox open bound to some elements click event. change that code from

$('element').bind('click', function(event){
  open lightbox here
});

to

$('element').live('click', function(event){
  open lightbox here
});

and you are done.

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