此方法是通过 online 和 offline 事件来侦听是否断网,但是这个在 IE 和 Firefox 中,并非断网了就是真的断网了。(如火狐中在选择 菜单>>文件>>脱机工作才会触发 online 和 offline 事件)
总之在IE和Firefox中一般情况下不能触发这俩事件,只有在选择脱机状态下才能触发此事件。
$ bower info onlinenetwork
<script type="text/javascript" src="online.js"></script>time: 时间不设置默认2000
url:不设置默认所有浏览器用online和offline事件
var net = onlinenetwork({
"time":1000,
"url":"http://*******.com/ping.php"
})net.onLineHandler(function(){
console.log("连上了!")
})net.offLineHandler(function(){
console.log("断开网络!")
})