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.

window.navigator.productSub

非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

概要

productSub は、現在のブラウザのビルド番号を返します。

構文

prodSub = window.navigator.productSub
  • prodSub は、文字列です。

<script>
function prodsub() {
  var dt = document.getElementById("d").childNodes[0];
  dt.data = window.navigator.productSub;
}
</script>

<button onclick="prodsub();">productSub</button>
// 20010725 などを返します。

注記

IE では、このプロパティは、 undefined を返します。

Google Chrome 及び Apple Safari では、このプロパティは常に 20030107 を返します。

仕様

DOM Level 0。どの標準にも属しません。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, jsx, ethertank, Potappo
 最終更新者: jsx,