HTML 내비게이터 javaEnabled() 메서드는 브라우저에 자바 활성화 여부를 정의하는 부울 값을 반환합니다.
구문
다음은 구문입니다 -
navigator.javaEnabled()
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 javaEnabled() method Demo</h1>
<button class="btn" onclick="display()">Check Java is Enable/Disable</button>
<div class="show"></div>
<script>
function display() {
var msg = document.querySelector(".show");
if (navigator.javaEnabled()) {
msg.innerHTML = "Hey! Java is enable in this browser";
} else {
msg.innerHTML = "Hey! Java is disable in this browser";
}
}
</script>
</body>
</html> 출력

"Java가 활성화/비활성화되어 있는지 확인을 클릭합니다. 이 브라우저에서 Java가 활성화/비활성화되었는지 여부를 표시하는 "버튼 -
