jQuery预加载图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery预加载图像相关的知识,希望对你有一定的参考价值。

This script preloads images in your document or lets your to preload images by their url and insert or append them in your DOM tree later.
  1. // Insert preloaded image after it finishes loading
  2. $('<img />')
  3. .attr('src', 'imageURL.jpg')
  4. .load(function(){
  5. $('.profile').append( $(this) );
  6. // Your other custom code
  7. });

以上是关于jQuery预加载图像的主要内容,如果未能解决你的问题,请参考以下文章

关于js----------------分享前端开发常用代码片段

使用 jQuery 预加载目录中的所有图像

js 常用代码片段

JQuery - 预加载图像(使用 JQuery / 本机 JavaScript / CSS)

jquery图像预加载

jQuery CSS图像预加载程序