用一句代码即可搞定: 代码如下: document.execCommand(“BackgroundImageCache”, false, true); 当然为了其它浏览器上能正常通过,需要做下判断后调用,才更安全: 代码如下: if(Browser.isIE6){ try{ document.execCommand(“BackgroundImageCache”, false, true); } catch(e1){} } 平台检测代码可以这样写,摘自Ext源码: 代码如下: var Browser = {}; try{ (function(){ var idSeed = 0, ua