navigator.platform
プラットフォームを返します。MacintoshでPowerPCプロセッサを使用している場合はMacPPCの文字が返されます。
構文
navigator.platform
例文
<html>
 <head>
  <title>navigator.platform</title>
  <script type="text/javascript"><!--
  window.onload = function() {
   var txt = navigator.platform;
   document.getElementById("result").innerHTML = txt;
  }
  // --></script>
 </head>
 <body>
 <div id="result"></div>
 </body>
</html>
関連記事
- navigator.vendorSub
- navigator.vendor
- navigator.userProfile
- navigator.userLanguage
- navigator.userAgent
- navigator.taintEnabled
- navigator.systemLanguage
- navigator.securityPolicy
- navigator.productSub
- navigator.product
- navigator.preference
- navigator.oscpu
- navigator.opsProfile
- navigator.onLine
- navigator.language
- navigator.javaEnabled
- navigator.cpuClass
- navigator.cookieEnabled
- navigator.browserLanguage
- navigator.appVersion
- navigator.appName
- navigator.appMinorVersion
- navigator.appCodeName
スポンサーリンク







