blob: afe4655ebcb25176dcb7b9a3d3ed063fd253e0f0 (
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
|
---
title: Navigator.productSub
slug: Web/API/Navigator/productSub
tags:
- API
- DOM
- 只读
- 属性
translation_of: Web/API/Navigator/productSub
---
<div>{{ ApiRef("HTML DOM") }}</div>
<p><code><strong>Navigator.productSub</strong></code> 只读属性返回当前浏览器的编译版本号。 </p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox"><em>prodSub</em> = window.navigator.productSub</pre>
<ul>
<li><code>prodSub</code>是一个字符串。</li>
</ul>
<h2 id="Example" name="Example">例子</h2>
<pre class="brush:js"><script>
function prodsub() {
var dt = document.getElementById("d").childNodes[0];
dt.data = window.navigator.productSub;
}
</script>
<button onclick="prodsub();">productSub</button>
// returns: 20010725</pre>
<h2 id="Notes" name="Notes">注释</h2>
<p>在IE上,这个属性返回undefined。</p>
<p>在苹果Safari上和Google的Ghrome上这个属性总是返回20030107。</p>
<h2 id="说明">说明</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">说明</th>
<th scope="col">状态</th>
<th scope="col">注释</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-navigator-productsub', 'NavigatorID: productSub')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Navigator.productSub")}}</p>
|