HTML Navigator onLine 属性
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>
输出
单击“检查浏览器在线/离线模式”按钮,以了解浏览器处于在线还是离线模式 −
现在尝试断开网络连接,然后再次单击“检查浏览器在线/离线模式”按钮 −
广告