程晓晖

博客园 首页 新随笔 联系 订阅 管理
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(); }
posted on 2011-01-29 17:19  fumen  阅读(1715)  评论(0编辑  收藏  举报