最新的Web開發教程
 

Navigator onLine Property

<導航對象

找出瀏覽器是否在線:

var x = "Is the browser online? " + navigator.onLine;

x的結果將是:

試一試»

更多"Try it Yourself"下面的例子。


定義和用法

在線資產返回一個布爾值,指定瀏覽器是否處於聯機或脫機模式。

注:此屬性是只讀的。


瀏覽器支持

在表中的數字規定,完全支持該財產瀏覽器版本。

屬性
onLine 14.0 3.5 5.0.4

句法

navigator.onLine

技術細節

返回值: 布爾值,指示是否瀏覽器為在線或離線模式。

如果瀏覽器在線返回true,否則返回false

例子

更多示例

在一個示例中,所有的導航性能的演示:

var txt = "";
txt += "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt += "<p>Browser Name: " + navigator.appName + "</p>";
txt += "<p>Browser Version: " + navigator.appVersion + "</p>";
txt += "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt += "<p>Browser Language: " + navigator.language + "</p>";
txt += "<p>Browser Online: " + navigator.onLine + "</p>";
txt += "<p>Platform: " + navigator.platform + "</p>";
txt += "<p>User-agent header: " + navigator.userAgent + "</p>";
試一試»

<導航對象