使用jquery将图像加载到div后如何执行函数?

发布于 2024-09-24 01:33:52 字数 349 浏览 2 评论 0原文

我对 jquery 相当陌生,并且仍在寻找自己的方法。一旦图像加载到特定的 div 中,我就会尝试执行一个函数。

这是我的代码。

$('#advanced-slideshow img').load(function() {
    var idx =  $('#mycarousel li a.activeSlide').data('index') - 2;
    carousel.scroll(idx);
    return false;
});

我想要的是每次将图像加载到 div 中时,#advanced-slideshow 我希望执行我的函数。

任何对此的帮助都会很棒!

I'm fairly new to jquery and still finding my way in it. I'm trying to execute a function, once an image is loaded into a specific div.

Here is the code I have.

$('#advanced-slideshow img').load(function() {
    var idx =  $('#mycarousel li a.activeSlide').data('index') - 2;
    carousel.scroll(idx);
    return false;
});

What I would like is each time and image is loaded into the div, #advanced-slideshow I want my function to execute.

Any help on this would be great!

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

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

发布评论

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

评论(1

倒带 2024-10-01 01:33:52
$(function() {
 $('#advanced-slideshow img').each(function() {
    $(this).load(function() {
      //do stuff
    });
 });
});

http://jsbin.com/aqiki4 测试上述代码

$(function() {
 $('#advanced-slideshow img').each(function() {
    $(this).load(function() {
      //do stuff
    });
 });
});

Test the above code at http://jsbin.com/aqiki4

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