Ultimele tutoriale de dezvoltare web
 

Navigator platform Property

<Navigator Object

Exemplu

Obțineți versiunea browser-ului:

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

Rezultatul x va fi:

Încearcă - l singur »

Mai multe "Try it Yourself" - "Try it Yourself" exemplele de mai jos.


Definiție și utilizare

Revine platforma de proprietate pentru care platforma este compilat browser.


Suport pentru browser-

Proprietate
platform da da da da da

Sintaxă

navigator.platform

Detalii tehnice

Întoarcere Valoare: Un șir, reprezentând platforma a browser-ului.

Valori posibile:
  • HP-UX
  • Linux i686
  • Linux armv7l
  • Mac68K
  • MacPPC
  • MacIntel
  • SunOS
  • Win16
  • Win32
  • WinCE
  • Etc ..

Exemple

Mai multe exemple

Exemplu

O demonstrație a tuturor proprietăților navigator într-un singur exemplu:

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>";
Încearcă - l singur »

<Navigator Object