移动端获取手机

移动端获取手机网络信息_SummerDrea的博客-CSDN博客
js 插件使用android
var networkState = navigator.connection.type;
var states = {};
states[Connection.UNKNOWN] = Unknown connection ;
states[Connection.ETHERNET] = Ethernet connection ;
states[Connection.WIFI] = WiFi connection ;
states[Connection.CELL 2G] = Cell 2G connection ;
states[Connection.CELL 3G] = Cell 3G connection ;
states[Connection.CELL 4G] = Cell 4G connection ;
states[Connection.CELL] = Cell generic connection ;
states[Connection.NONE] = No network connection ;
alert( Connection type: + states[networkState]);
}