jQuery预加载图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery预加载图像相关的知识,希望对你有一定的参考价值。
I believe that Accrisoft has a fetch all images from db function built in, but you could always use some php to create the image array
$.preloadImages = function() { for (var i = 0; i<arguments.length; i++) { img = new Image(); img.src = arguments[i]; } } $.preloadImages ( "path_to_image_array", "path_to_image_array", "path_to_image_array" );
以上是关于jQuery预加载图像的主要内容,如果未能解决你的问题,请参考以下文章
关于js----------------分享前端开发常用代码片段