使用jquery将图像加载到div后如何执行函数?
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 http://jsbin.com/aqiki4 测试上述代码
Test the above code at http://jsbin.com/aqiki4