有没有办法从网站获取移动连接设置? 我想检查连接类型(3G \ 4G \ WiFi),如果这是WiFi - 它使用什么安全方法?
这可能吗?怎么样?
编辑:如果不可能,我可以弹出"如果用户使用网络确认,则设置WiFi?
答案 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非常有限。