如何使用浏览器查找移动WiFi设置

时间:2016-07-05 19:30:14

标签: javascript html5 mobile-safari mobile-website

有没有办法从网站获取移动连接设置? 我想检查连接类型(3G \ 4G \ WiFi),如果这是WiFi - 它使用什么安全方法?

这可能吗?怎么样?

编辑:如果不可能,我可以弹出"如果用户使用网络确认,则设置WiFi?

1 个答案:

答案 0 :(得分:0)

您可以使用Network Information API

var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
var type = connection.type;

其中type可以是bluetooth,cellular,ethernet,none,wifi,wimax,other,unknown。

不幸的是support非常有限。