blob: a06787c3c927a0f3100138c6c0a43928c948961f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
---
title: navigator.doNotTrack
slug: Web/API/Navigator/doNotTrack
translation_of: Web/API/Navigator/doNotTrack
original_slug: DOM/navigator.doNotTrack
---
<p>{{ ApiRef() }}</p>
<h3 id="Summary" name="Summary">Yhteenveto</h3>
<p>Palauttaa käyttäjän do-not-track -asetuksen. Tämä on "yes", jos käyttäjä on pyytänyt, että hänen vierailemiaan webbisivuja, sisältöä tai mainoksia ei seurata.</p>
<h3 id="Syntax" name="Syntax">Syntaksi</h3>
<pre class="eval"><em>dnt</em> = <em>navigator</em>.doNotTrack;
</pre>
<p>Huomaa, että <strong><code>navigator.doNotTrack</code> ei ole do-not-track -otsakkeessa lähetettävä arvo</strong>. Kun the do-not-track otsake lähettää "1", <code>navigator.doNotTrack</code> on "yes". Kun otsaketta ei ole asetettu, <code>navigator.doNotTrack</code> on "unspecified". Kun otsake lähettää "0" (ei tueta nykyisin Firefoxissa), <code>navigator.doNotTrack</code> on "no".</p>
<h3 id="Example" name="Example">Esimerkki</h3>
<pre class="eval">dump(window.navigator.doNotTrack);
// tulostaa "yes" jos DNT ei ole käytössä; muussa tapauksessa tämä on "unspecified" Firefoxissa
</pre>
<h3 id="Specification" name="Specification">Spesifikaatio</h3>
<p><a class="external" href="http://www.w3.org/TR/tracking-dnt/" title="http://www.w3.org/TR/tracking-dnt/">Tracking Preference Expression</a> (Working Draft) perustuu tämän spesifikaation aikaisempaan versioon josssa <code>navigator.doNotTrack</code> <strong>on</strong> do-not-track -otsakkeessa lähetettävä arvo.</p>
<h3 id="Katso_myös">Katso myös</h3>
<ul>
<li><a href="/en/The_Do_Not_Track_Field_Guide" title="https://developer.mozilla.org/en/The_Do_Not_Track_Field_Guide">The Do Not Track field guide</a></li>
</ul>
<h3 id="Selainyhteensopivuus">Selainyhteensopivuus</h3>
<p>{{CompatibilityTable() }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th><strong>Feature</strong></th>
<th><strong>Chrome</strong></th>
<th><strong>Firefox (Gecko)</strong></th>
<th><strong>Internet Explorer</strong></th>
<th><strong>Opera</strong></th>
<th><strong>Safari</strong></th>
</tr>
<tr>
<td>Perustuki</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatGeckoDesktop("9.0") }}</td>
<td>9</td>
<td>12</td>
<td>5.1 käyttöjärjestelmässä OS X 10.7</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th><strong>Feature</strong></th>
<th><strong>Android</strong></th>
<th><strong>Firefox Mobile (Gecko)</strong></th>
<th><strong>IE Mobile</strong></th>
<th><strong>Opera Mobile</strong></th>
<th><strong>Safari Mobile</strong></th>
</tr>
<tr>
<td>Perustuki</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatGeckoMobile("9.0") }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<ul>
<li>IE9 käyttää toimittajaetuliitettä, toisin sanoen, navigator.msDoNotTrack</li>
<li>IE9, Opera 12, ja Safari 5.1 perustuvat tämän spesifikaation aikaisempaan versioon jossa <code>navigator.doNotTrack</code> <strong>on</strong> do-not-track-otsakkeessa lähetettävä arvo.</li>
</ul>
<p><strong>{{ languages( { "zh-cn": "zh-cn/DOM/navigator.doNotTrack" } ) }}</strong></p>
|