使用jQuery预加载图片详解编程语言

帮助在网页上快速加载图片,使它很容易保存和查看。

jQuery.preloadImagesInWebPage = function() 
{ 
for(var ctr = 0; ctr<arguments.length; ctr++) 
{ 
jQuery("").attr("src", arguments[ctr]); 
} 
} 
To use the above method, you can use the following piece of code: 
$.preloadImages("image1.gif", "image2.gif", "image3.gif"); 
To check whether an image has been loaded, you can use the following piece of code: 
$('#imageObject').attr('src', 'image1.gif').load(function() { 
alert('The image has been loaded…'); 
});

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8634.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论