可与动态加载的 html 配合使用的灯箱
我目前正在网站首页上使用“阅读更多”功能来加载较大的文章部分。它从一个单独的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
live 的作用是将事件附加到页面上存在或将出现在页面上的元素。
您可能已打开灯箱并绑定到某些元素的单击事件。将该代码从 更改
为
即可完成。
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
to
and you are done.