获取浏览器的一写属性的方法: Dim obj,tempValue '获得窗体对象set obj = Browser("CreationTime:=1").Page("index:=").Object.parentWindow '获取浏览器的当前语言。tempValue = obj.clientInformation.browserLanguageprint(tempValue) '获取浏览器的名称。tempValue = obj.clientInformation.appNameprint(tempValue) '获取浏览器运行的平台和版本。tempValue = obj.clientInformation.appVersionprint(tempValue) '获取用户的操作系统名称。tempValue = obj.clientInformation.platformprint(tempValue) '获取操作系统适用的默认语言。tempValue = obj.clientInformation.systemLanguageprint(tempValue) '获取浏览器的代码名称。tempValue = obj.clientInformation.appCodeNameprint(tempValue) '获取指示 CPU 等级的字符串。tempValue = obj.clientInformation.cpuClassprint(tempValue) '获取表明系统是否处于全局脱机模式的值。tempValue = obj.clientInformation.onLineprint(tempValue) '获取等同于 HTTP 用户代理请求头的字符串。tempValue = obj.clientInformation.userAgentprint(tempValue)