HTML 내비게이터 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> 출력

"사용자 에이전트 헤더 값 표시를 클릭합니다. " 버튼을 눌러 브라우저 사용자 에이전트 헤더 값 -
