最新のWeb開発のチュートリアル
 

Navigator platform Property

<ナビゲーターオブジェクト

お使いのブラウザのバージョンを取得します。

var x = "Platform: " + navigator.platform;

xの結果は次のようになります。

»それを自分で試してみてください

もっと"Try it Yourself"以下の例。


定義と使用法

ブラウザがコンパイルされているプラ​​ットフォーム用のプラットフォームのプロパティを返します。


ブラウザのサポート

プロパティ
platform はい はい はい はい はい

構文

navigator.platform

技術的な詳細

戻り値: ブラウザのプラットフォームを表す文字列、。

可能な値:
  • HP-UX
  • Linuxのi686の
  • Linuxのarmv7l
  • mac68kの
  • macppcの
  • MacIntel
  • SunOSの
  • Win16
  • Win32の
  • ひるみ
  • 等..

例

その他の例

一例では、すべてのナビゲーターのプロパティのデモンストレーション:

var txt = "";
txt += "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt += "<p>Browser Name: " + navigator.appName + "</p>";
txt += "<p>Browser Version: " + navigator.appVersion + "</p>";
txt += "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt += "<p>Browser Language: " + navigator.language + "</p>";
txt += "<p>Browser Online: " + navigator.onLine + "</p>";
txt += "<p>Platform: " + navigator.platform + "</p>";
txt += "<p>User-agent header: " + navigator.userAgent + "</p>";
»それを自分で試してみてください

<ナビゲーターオブジェクト