js如何判断wifi环境

JavaScript014

js如何判断wifi环境,第1张

可试试腾讯手机管家,管家在“WiFi管理”功能中,对所有一键链接的免费WiFi都会进行“DNS劫持”、“ARP欺骗攻击”、“虚假钓鱼WiFi”等安全检测,帮助大家识别危险WiFi网络,极大程度上保障了用户的WiFi用网安全。同时,腾讯手机管家的“WiFi管理”还可以对WiFi进行测速,来检测当前网速上传下载速率,从而决定是否接入。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html charset=utf-8" />

<title>页面速度</title>

<script src="jquery-1.4.4.js"></script>

<script>

var obj = {}

</script>

</head>

<body>

<script>

<!--记录时间点-->

obj.one = new Date*1+10

obj.two =  new Date*1+50

obj.three = new Date*1+60

obj.four =  new Date*1+80

obj.five =  new Date*1+100

var str = $.param(obj)

var img = new Image()

img.src = 'ns.php?'+str

//加载完成或失败都要绑定,如果页面没有正确输出图片(只有头信息是不行的)则会触发onerror事件

img.onload = img.onerror = function() {    

    //清除无用资源

    obj = img = null

}

console.log(img)

//追加显示图片,故我们要把图片变量也清除掉

/*$(function(){

    $("#btn").click(function(){

        $(document.body).append(img)

        //document.body.appendChild(img)

    })

})*/

</script>

<button id="btn">单击显示图片</button>

</body>

</html>

需要jquery库支持