--- title: window.navigator.product slug: Web/API/NavigatorID/product tags: - DOM - DOM_0 - Gecko - Gecko DOM Reference translation_of: Web/API/NavigatorID/product ---
このプロパティは、現在のブラウザの製品名を返します。
productName = window.navigator.product
productName
: 製品名を表す文字列<script> function prod() { dt = document.getElementById("d"); dt.innerHTML = window.navigator.product; } </script> <button onclick="prod();">product</button> <div id="d"> </div> <!-- "Gecko" などの文字列が表示される -->
製品名は、ユーザエージェント全体の文字列の一部(プラットフォームの直後)です。例えば、Netscape 6.1 を表すユーザエージェントでは、製品名は、"Gecko" であり、ユーザエージェント文字列全体は、次の通りです。
Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape6/6.1
{{DOM0}}