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

この翻訳は不完全です。英語から この記事を翻訳 してください。

概要

使用中のオペレーティングシステムを識別する文字列を返します。

構文

oscpuInfo = window.navigator.oscpu 
  • oscpuInfo : 以下の表に列挙する形式の文字列
オペレーティングシステム oscpuInfo の文字列
OS/2 OS/2 Warp x (either 3, 4 or 4.5)
Windows CE WindowsCE x.y1
Windows 64-bit (64-bit build) Windows NT x.y; Win64; x64
Windows 64-bit (32-bit build) Windows NT x.y; WOW64
Windows 32-bit Windows NT x.y
Mac OS X (PPC build) PPC Mac OS X x.y
Mac OS X (i386/x64 build) Intel Mac OS X x.y
Linux 64-bit (32-bit build) Output of uname -s plus "i686 on x86_64"
Linux Output of uname -sm

[1] x.y はオペレーティングシステムのバージョンを参照する

function osInfo() { 
  alert(window.navigator.oscpu); 
}
// 表示例: "Windows NT 6.0"

注記

Unless your code is privileged (chrome or at least has the UniversalBrowserRead privilege), it may get the value of the general.oscpu.override preference instead of the true platform.

仕様

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

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

 このページの貢献者: lv7777, fscholz, khalid32, ethertank, Potappo
 最終更新者: lv7777,