欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

转:cookieEnabled属性说明 博客分类: javascript navigator.cookieEnabled 

程序员文章站 2024-03-22 16:40:22
...

13.4 Javascript navigator对象  

 
 
navigator对象通常用于检测浏览器与操作系统的版本
  • navigator,中文"导航器"的意思
  • 引用网址:http://www.dreamdu.com/javascript/window.navigator/
  • navigator对象是window对象的属性
  • 由于navigator没有统一的标准,因此各个浏览器都有自己不同的navigator版本,这里只介绍最普遍支持且最常用的。

常用的navigator属性

  • appCodeName -- 浏览器代码名的字符串表示
  • appName -- 官方浏览器名的字符串表示
  • appVersion -- 浏览器版本信息的字符串表示
  • cookieEnabled -- 如果启用cookie返回true,否则返回false
  • javaEnabled -- 如果启用java返回true,否则返回false
  • platform -- 浏览器所在计算机平台的字符串表示
  • plugins -- 安装在浏览器中的插件数组
  • taintEnabled -- 如果启用了数据污点返回true,否则返回false
  • userAgent -- 用户代理头的字符串表示

navigator中最重要的是userAgent属性,返回包含浏览器版本等信息的字符串,其次cookieEnabled也很重要,使用它可以判断用户浏览器是否开启cookie。

navigator.userAgent -- 返回用户代理头的字符串表示(就是包括浏览器版本信息等的字符串)
  • userAgent,中文"用户代理"的意思
  • 引用网址:http://www.dreamdu.com/javascript/navigator.userAgent/

userAgent属性语法

navigator.userAgent;  

userAgent属性说明

通常使用navigator.userAgent属性判断用户使用的浏览器与操作系统,梦之都的操作系统使用率统计与浏览器使用率统计都是通过userAgent属性获得的

示例

document.write(navigator.userAgent);  

延伸阅读

  • 用户操作系统使用率统计
  • 用户浏览器使用率统计
navigator.cookieEnabled -- 返回浏览器是否支持(启用)cookie
  • cookieEnabled,中文"cookie是否开启"的意思
  • 引用网址:http://www.dreamdu.com/javascript/navigator.cookieEnabled/

cookieEnabled属性语法

navigator.cookieEnabled;  

cookieEnabled属性返回值

如果启用cookie返回true,否则返回false