用jQuery和ajax方法缓存文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用jQuery和ajax方法缓存文件相关的知识,希望对你有一定的参考价值。
Handy little snippet i found in 'jquery enlightenment' for caching certain selected files. Could be useful for larger files later on in a site.
(function($){ $(window).load(function(){ //Wait for the page to load, the cache the files you want $.ajax({url:'image.jpg', dataType:'text'}); $.ajax({url:'flash.swf', dataType:'text'}); $.ajax({url:'style.css', dataType:'text'}); }); })(jQuery);
以上是关于用jQuery和ajax方法缓存文件的主要内容,如果未能解决你的问题,请参考以下文章