ตัวอย่าง
รับเวอร์ชันของเบราว์เซอร์ของคุณ:
var x = "Platform: " + navigator.platform;
ผลของ x จะเป็น:
ลองตัวเอง» เพิ่มเติม "Try it Yourself" ตัวอย่างด้านล่าง
ความหมายและการใช้งาน
ผลตอบแทนสถานที่ให้บริการแพลตฟอร์มสำหรับแพลตฟอร์มเบราว์เซอร์จะรวบรวม
สนับสนุนเบราว์เซอร์
คุณสมบัติ | |||||
---|---|---|---|---|---|
platform | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
วากยสัมพันธ์
navigator.platform
รายละเอียดทางเทคนิค
กลับค่า: | สตริงที่เป็นตัวแทนของแพลตฟอร์มของเบราว์เซอร์ ค่าที่เป็นไปได้:
|
---|
ตัวอย่างอื่น ๆ
ตัวอย่าง
การสาธิตการทุกคุณสมบัตินำทางในตัวอย่างที่หนึ่ง:
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>";
ลองตัวเอง» <Navigator วัตถุ