Skip to content

Commit

Permalink
updata Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pc175 committed Feb 15, 2015
1 parent 57beb05 commit 20b589f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
## 判断是否网络断了
## js判断是否断网了

此方法是通过 `online``offline` 事件来侦听是否断网,但是这个在 `IE ``Firefox` 中,并非断网了就是真的断网了。(如火狐中在选择 `菜单>>文件>>脱机工作`才会触发 `online``offline` 事件)

总之在`IE``Firefox`中一般情况下不能触发这俩事件,只有在选择脱机状态下才能触发此事件。

### 设置轮询时间和地址
在online.js中设置以下

> `time` 设置轮询时间
> `url``url`为空的时候 默认所有浏览器使用 onLine 和 offline事件
> - url 不为空的时候 IE 和 Firefox 使用 AJAX 轮询判断网络是否连接
> - url 请求的可以是服务器一个空php 等文件
> - 文件可以设置头文件,避免轮询跑更多的流量

### 侦听是否连上网络

Expand Down
2 changes: 0 additions & 2 deletions online.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@
getExplorer: function(newStatus){
var explorer = window.navigator.userAgent;
this.setStatus(newStatus)

console.log("test:3",url)
if((explorer.indexOf('Firefox') >= 0 || explorer.indexOf('MSIE') >= 0)&&url){
console.log("test:1")
this.checkOnLine()
Expand Down

0 comments on commit 20b589f

Please sign in to comment.