var BroswerInfo = new function () {
this.AppName = navigator.appName; //浏览器类型
this.AppVersion = navigator.appVersion; //浏览器版本
this.BrowserLanguage = navigator.browserLanguage; //浏览器语言
this.CpuClass = navigator.cpuClass; //CPU类型
this.Platform = navigator.platform; //操作系统
this.SystemLanguage = navigator.systemLanguage; //系统语言
this.UserLanguage = navigator.userLanguage; //用户语言
this.OnLine = navigator.onLine; //在线情况
this.Screen = window.screen.width + "x" + window.screen.height; //屏幕分辨率
this.Color = window.screen.colorDepth + "bit"; //颜色
this.FontSmoothingEnabled = window.screen.fontSmoothingEnabled; //字体平滑
this.AppMinorVersion = navigator.appMinorVersion; //更新版本
this.AppCodeName = navigator.appCodeName;
this.CookieEnabled = navigator.cookieEnabled; //cookieEnabled
this.UserAgent = navigator.userAgent; //userAgent
this.JavaEnabled = navigator.javaEnabled();
}