jQuery Lightbox 完成了吗?

发布于 2024-10-21 08:53:27 字数 408 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

人间☆小暴躁 2024-10-28 08:53:27

如果您使用的是 jQuery 1.3 或更高版本,您可以使用 jQuery.live

$('#download').live("click", function(e) {
    e.preventDefault();
    //do other stuff when a click happens
});

它将附加一个点击处理程序到 #download 链接,即使该链接是在将来创建的。

if you're using jQuery 1.3 or later, you can use jQuery.live

$('#download').live("click", function(e) {
    e.preventDefault();
    //do other stuff when a click happens
});

It will attach a click handler to the #download link, even if the link created in the future.

等往事风中吹 2024-10-28 08:53:27

我认为您可能正在寻找

$('#download').live('click', function(e){
  e.preventDefault();
//do other stuff when a click happens

});

#download 如果您在页面加载后创建它,则不会将其加载到 DOM 中

I think you may be looking for

$('#download').live('click', function(e){
  e.preventDefault();
//do other stuff when a click happens

});

#download will not be loaded into the DOM if you are creating it after the page has been loaded

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