87,997
社区成员




var tt = (function(){
var t = {};
var b = navigator.userAgent.toLowerCase();
t.isIE = (!t.isOpera && b.indexOf('msie') > -1);
return t;
})();
//调用 tt.isIE 值 true false
var ss={
b:navigator.userAgent.toLowerCase(),
isIE:function(){return (ss.b.indexOf('msie') > -1);}
}
//调用 ss.isIE() 值 true false
function dd(){
this.b=navigator.userAgent.toLowerCase();
this.isIE=(this.b.indexOf('msie') > -1);
}
//调用 (new dd).isIE 值 true false