blob: 0c660198d10fa45b91f1559dad9bb68c25cc4086 (
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
|
---
title: NavigatorID.product
slug: Web/API/NavigatorID/product
translation_of: Web/API/NavigatorID/product
---
<div>
{{ApiRef}}</div>
<h2 id="Summary" name="Summary">概述</h2>
<p>该属性返回当前浏览器的产品名称。</p>
<div class="note">
<strong>注意:</strong>该属性不一定返回一个真实的产品名称。Gecko 和 WebKit 浏览器返回 "Gecko" 作为该属性的值。</div>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox"><i>productName</i> = window.navigator.product
</pre>
<ul>
<li><code>productName</code> 是一个字符串。</li>
</ul>
<h2 id="Example" name="Example">例子</h2>
<pre class="brush: html"><script>
function prod() {
dt = document.getElementById("d");
dt.innerHTML = window.navigator.product;
}
</script>
<button onclick="prod();">product</button>
<div id="d"> </div>
<!-- 返回 "Gecko" -->
</pre>
<h2 id="Notes" name="Notes">备注</h2>
<p>在基于 Gecko 的浏览器中,<code>product</code> 为完整的用户代理(user agent)字符串中紧跟着平台(platform)后的部分。例如,在 Netscape 6.1 的用户代理中,product 是 "<code>Gecko</code>",完整的代理字符串是:<code>Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape6/6.1</code>。</p>
<p>在基于 WebKit 的浏览器中,<code>product</code> 仍然返回 "<code>Gecko</code>",即使完整用户代理字符串中平台(platform)后紧跟着:<code>(KHTML, like Gecko)</code>。</p>
<h2 id="Specification" name="Specification">规范</h2>
<p>{{dom0}}</p>
|