HTML नेविगेटर userAgent प्रॉपर्टी ब्राउज़र द्वारा सर्वर पर भेजे गए उपयोगकर्ता-एजेंट हेडर का मान लौटाती है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
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> आउटपुट

“उपयोगकर्ता-एजेंट शीर्षलेख मान दिखाएं . पर क्लिक करें "ब्राउज़र उपयोगकर्ता-एजेंट हेडर मान प्रदर्शित करने के लिए बटन -
