extjs box img src用IE打开时展示占位符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extjs box img src用IE打开时展示占位符相关的知识,希望对你有一定的参考价值。
1 var imageStyleResult = new Ext.form.FieldSet({ 2 title:‘预览‘, 3 height:100, 4 items:[ 5 { 6 id:‘showFraction‘, 7 xtype: ‘box‘, //或者xtype: ‘component‘, 8 autoEl: { 9 tag: ‘img‘ 10 } 11 } 12 ] 13 14 });
Q1:在IE打开时会展示占位符?
A1:将box img src给个默认空白图片。
Q2:首次打开该页面时OK,再次打开任然展示占位符?
A2:js 清缓存,jsp添加:
1 <meta http-equiv="Expires" CONTENT="0"> 2 <meta http-equiv="Cache-Control" CONTENT="no-cache"> 3 <meta http-equiv="Pragma" CONTENT="no-cache">
或者ajax清缓存
1 $.ajax({ 2 type: "GET", 3 url: "InsertSurfaceRoughnessWord.js", 4 dataType: "text", 5 beforeSend :function(xmlHttp){ 6 xmlHttp.setRequestHeader("If-Modified-Since","0"); 7 xmlHttp.setRequestHeader("Cache-Control","no-cache"); 8 9 } 10 });
我只增加了第一个!记录
以上是关于extjs box img src用IE打开时展示占位符的主要内容,如果未能解决你的问题,请参考以下文章
带有复选框 selModel 的 ExtJs Gridpanel 窗口,在第二次打开时不显示复选框
joomla建站用的是google浏览器,其他浏览器打开时模块位置移动,是否使用自定义HTML时改过position的缘故