當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Navigator onLine用法及代碼示例


Navigator onLine屬性用於返回一個布爾值,該值指定瀏覽器是處於聯機還是脫機模式。這是一個隻讀屬性,如果瀏覽器處於聯機模式,則返回true;如果處於脫機模式,則返回false。

用法:

navigator.onLine

以下示例程序旨在說明Navigator onLine屬性:


檢查瀏覽器是處於在線還是離線模式。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Navigator onLine Property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Navigator onLine Property</h2> 
  
    <p> 
      For checking the browser's mode,  
      double click the "Check Mode" button:  
    </p> 
  
    <button ondblclick="checkmode()"> 
      Check Mode 
    </button> 
  
    <p id="mode"></p> 
  
    <script> 
        function checkmode() { 
  
            // We use navigator.onLine to check if browser is online 
            var o =  
                "Is the browser in online mode? " + navigator.onLine; 
            document.getElementById("mode").innerHTML = o; 
        } 
    </script> 
  
</body> 
  
</html> 
                       

輸出:

單擊按鈕後

支持的瀏覽器:導航器在線支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • 蘋果Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | Navigator onLine Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。