คุณสมบัติ HTML navigator userAgent ส่งคืนค่าของส่วนหัว user-agent ที่เบราว์เซอร์ส่งไปยังเซิร์ฟเวอร์
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
navigator.userAgent
ให้เราดูตัวอย่างของคุณสมบัติเนวิเกเตอร์ HTML userAgent -
ตัวอย่าง
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } .show { font-size: 1.2rem; color: #fff; } </style> <body> <h1>HTML navigator userAgent property Demo</h1> <button class="btn" onclick="display()">Show user-agent header value</button> <div class="show"></div> <script> function display() { document.querySelector(".show").innerHTML = "<p>Browser user-agent header value is:</p>" + "<p>" + navigator.userAgent + "</p>"; } </script> </body> </html>
ผลลัพธ์
คลิกที่ “แสดงค่าส่วนหัวของ user-agent ” เพื่อแสดงค่าส่วนหัวของตัวแทนผู้ใช้เบราว์เซอร์ -