jQuery Lightbox 完成了吗?
我正在使用 jQuery 灯箱插件(在这里找到:http://leandrovieira.com/projects/jquery/lightbox /)
我想知道是否有一种方法可以检测图像何时加载,以便我可以恢复我的选择器?
问题是我的剥离:
$('#download').click(function(e) {
e.preventDefault();
//do other stuff when a click happens
});
不适用于加载到灯箱“标题”区域的链接。
请帮忙
谢谢:)
I am using jQuery light box plugin (found here: http://leandrovieira.com/projects/jquery/lightbox/)
I am wondering if there is a way to detect when the image is loaded so i can reinstate my selectors?
The problem is my stript:
$('#download').click(function(e) {
e.preventDefault();
//do other stuff when a click happens
});
Does not work on the link that is loaded into the 'title' area of the lightbox.
Please Help
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 jQuery 1.3 或更高版本,您可以使用 jQuery.live
它将附加一个点击处理程序到 #download 链接,即使该链接是在将来创建的。
if you're using jQuery 1.3 or later, you can use jQuery.live
It will attach a click handler to the #download link, even if the link created in the future.
我认为您可能正在寻找
#download
如果您在页面加载后创建它,则不会将其加载到 DOM 中I think you may be looking for
#download
will not be loaded into the DOM if you are creating it after the page has been loaded