JavaScript控制图片加载完成后调用回调函数的方法
作者:bea
本文实例讲述了JavaScript控制图片加载完成后调用回调函数的方法。分享给大家供大家参考。具体分析如下: 这段代码可以控制指定区域内的图片加载完成后执行指定的回调函数。 代码如下: function when_images_loaded($img_container, callback) { /* do callback when images in $img_container (jQuery object) are loaded. Only works when
本文实例讲述了JavaScript控制图片加载完成后调用回调函数的方法。分享给大家供大家参考。具体分析如下:
这段代码可以控制指定区域内的图片加载完成后执行指定的回调函数。
代码如下:
function when_images_loaded($img_container, callback) {
/* do callback when images in $img_container (jQuery object) are loaded. Only works when ALL images in $img_container are newly inserted images and this function is called immediately after images are inserted into the target. */
var _imgs = $img_container.find('img'),
img_length = _imgs.length,
img_load_cntr = 0;
if (img_length) {//if the $img_container contains new images.
_imgs.on('load', function() {//then we avoid the callback until images are loaded
img_load_cntr++;
if (img_load_cntr == img_length) {
callback();
}
});
}
else { //otherwise just do the main callback action if there's no images in $img_container.
callback();
}
}
希望本文所述对大家的javascript程序设计有所帮助。
有用 | 无用
这段代码可以控制指定区域内的图片加载完成后执行指定的回调函数。
代码如下:
function when_images_loaded($img_container, callback) {
/* do callback when images in $img_container (jQuery object) are loaded. Only works when ALL images in $img_container are newly inserted images and this function is called immediately after images are inserted into the target. */
var _imgs = $img_container.find('img'),
img_length = _imgs.length,
img_load_cntr = 0;
if (img_length) {//if the $img_container contains new images.
_imgs.on('load', function() {//then we avoid the callback until images are loaded
img_load_cntr++;
if (img_load_cntr == img_length) {
callback();
}
});
}
else { //otherwise just do the main callback action if there's no images in $img_container.
callback();
}
}
希望本文所述对大家的javascript程序设计有所帮助。
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- JavaScript通过select动态更换图片的方法
- JavaScript通过this变量快速找出用户选中radio按钮的方法
- 浅谈jQuery中的事件
- JavaScript实现俄罗斯方块游戏过程分析及源码分享
- JavaScript判断表单提交时哪个radio按钮被选中的方法
- JavaScript动态修改网页元素内容的方法
- JavaScript实现向OL列表内动态添加LI元素的方法
- JavaScript实现当网页加载完成后执行指定函数的方法
- JavaScript动态加载样式表的方法
- JavaScript获得url所有参数键值表的方法
- JavaScript删除数组元素的方法
- JavaScript通过join函数连接数组里所有元素的方法
- JavaScript把数组作为堆栈使用的方法
- JS定义网页表单提交(submit)的方法
- 纯Javascript实现ping功能的方法
- jQuery找出网页上最高元素的方法
- jQuery实现平滑滚动到指定锚点的方法
- jQuery在页面加载时动态修改图片尺寸的方法
- jQuery实现页面滚动时动态加载内容的方法