Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Navigator.doNotTrack

这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀.由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变.

概述

返回用户的do-not-track设置,如果用户不允许网站,内容和广告等进行跟踪,则该值为yes.

语法

dnt = navigator.doNotTrack;

navigator.doNotTrack的值并不是 HTTP请求中do-not-track请求头的值. 当do-not-track请求头发送的值为"1", navigator.doNotTrack 的值为 "yes".  当do-not-track请求头发送的值为unset, navigator.doNotTrack的值为"unspecified". 当do-not-track请求头发送的值为 "0" (Firefox目前不支持), navigator.doNotTrack的值为"no".

例子

dump(window.navigator.doNotTrack); 
//Firefox中:如果开启了DNT,输出"yes";否则输出"unspecified".

规范

Tracking Preference Expression (工作草案)

相关链接

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? 9.0 (9.0) 9 12 5.1 on OS X 10.7
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 9.0 (9.0) ? ? ?
  • IE9 中该属性带有ms前缀:navigator.msDoNotTrack
  • IE9, Opera 12和Safari 5.1 实现了早起的旧版本规范:navigator.doNotTrack 的值就是 do-not-track 请求头中的值.

文档标签和贡献者

 此页面的贡献者: teoli, khalid32, ziyunfei
 最后编辑者: teoli,