用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.
  1. (function($){
  2. $(window).load(function(){
  3. //Wait for the page to load, the cache the files you want
  4. $.ajax({url:'javascript.js', dataType:'text'});
  5. $.ajax({url:'image.jpg', dataType:'text'});
  6. $.ajax({url:'flash.swf', dataType:'text'});
  7. $.ajax({url:'style.css', dataType:'text'});
  8. });
  9. })(jQuery);

以上是关于用jQuery和ajax方法缓存文件的主要内容,如果未能解决你的问题,请参考以下文章

最好用的jQuery-Ajax缓存插件

PHP中运用jQuery的Ajax跨域调用实现代码

jQuery – AJAX get() 和 post() 方法

几个可以直接拿来用的jQuery代码片段

几个可以直接拿来用的jQuery代码片段

用JQuery实现ajax技术的常用方法