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.
// Insert preloaded image after it finishes loading $('<img />') .attr('src', 'imageURL.jpg') .load(function(){ $('.profile').append( $(this) ); // Your other custom code });
以上是关于jQuery预加载图像的主要内容,如果未能解决你的问题,请参考以下文章
关于js----------------分享前端开发常用代码片段