更改接口调用方式
设置轮询时间和地址
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("断开网络!")
})