非標準
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。どの標準にも属しません。