我有一个内容流,它从服务器抓取所有图像并显示,这个内容流能够在 Chrome 上显示图像,但不能在 Mozilla/Firefox 中显示。
我在 js 文件中有这段代码。
this.Opera=window.opera?true:false;
this.IE=document.all&&!this.Opera?true:false;
this.IE6=this.IE&&typeof (window.XMLHttpRequest)=="undefined"?true:false;
this.IE8=this.IE&&typeof(document.querySelectorAll)!="undefined"?true:false;
this.IE7=this.IE&&!this.IE6&&!this.IE8?true:false;
this.WebKit=/WebKit/i.test(navigator.userAgent)?true:false,this.iPhone=/iPhone|iPod/i.test(navigator.userAgent)?true:false;
this.Chrome=/Chrome/i.test(navigator.userAgent)?true:false;
this.Mozilla= /Mozilla/i.test(navigator.userAgent) ? true : false;
this.Safari=/Safari/i.test(navigator.userAgent)&&!this.Chrome?true:false;