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