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.platform

 
概要

ブラウザのプラットフォームを表す文字列を返します。

構文

platform =navigator.platform
  • platform : 文字列 (例: "Win32" 、 "Linux i686" 、 "MacPPC" 、 "MacIntel" ...等)

// "Win32" の場合のみ、body 要素の style 属性に異なるフォントファミリを指定
 
if(navigator.platform === "Win32") {
  document.body.style.fontFamily = "Meiryo, メイリオ, sans-serif";
};

注記

コードが特権下にない場合 (chrome 、または最低でも、UniversalBrowserRead 特権が必要)、本当のプラットフォームではなく、general.platform.override 設定の値を取得する可能性があります。

仕様

これは元々 DOM Level 0 の一部でしたが、現在は HTML5 仕様書に含まれています。

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

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