HTML 내비게이터 onLine 속성은 브라우저가 온라인인지 오프라인인지를 정의하는 부울 값을 반환합니다.
구문
다음은 구문입니다 -
navigator.onLine
HTML 내비게이터 onLine 속성의 예를 살펴보겠습니다. -
예시
<!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 onLine property Demo</h1> <button class="btn" onclick="display()">Check Browser Online/Offline Mode</button> <div class="show"></div> <script> function display() { var msg = document.querySelector(".show"); if (navigator.onLine) { msg.innerHTML = "Hey! You are online"; } else { msg.innerHTML = "Hey! You are offline"; } } </script> </body> </html>
출력
"브라우저 온라인/오프라인 모드 확인을 클릭합니다. " 버튼을 눌러 브라우저가 온라인 모드인지 오프라인 모드인지 -
이제 네트워크 연결을 끊고 "브라우저 온라인/오프라인 모드 확인을 다시 클릭합니다. " 버튼 -