js 日常问题记录

1.解决ie6下css背景图不缓存

try{

  document.execCommand('BackgroundImageCache',false,true);

}catch(e){}

2.为ajax设置请求默认值。

$.ajaxSetup({cache:true})

原文地址:https://www.cnblogs.com/zerohu/p/5422438.html