Skip to content

onlinenetwork v0.2

Latest
Compare
Choose a tag to compare
@jaywcjlove jaywcjlove released this 04 Mar 02:25
· 5 commits to master since this release

更改接口调用方式

设置轮询时间和地址

time: 时间不设置默认2000
url:不设置默认所有浏览器用 onlineoffline事件

var net = onlinenetwork({
    "time":1000,
    "url":"http://*******.com/ping.php"
})

连上网络执行

net.onLineHandler(function(){
    console.log("连上了!")
})

断开网络执行

net.offLineHandler(function(){
    console.log("断开网络!")
})