最新的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>";
试一试»

<导航对象