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