即使使用“虚拟”模板代码,它也不会工作。我在 Web 控制台中得到了这个
Error initializing Network Connection: Class not found:85
我通过plugman安装了插件。
在 Android 上测试:三星 Galaxy SII(4.1.2) 和三星 Galaxy SIII (4.1.2)
这是虚拟代码:(它在任何情况下都会提醒“未知”是否存在任何类型的数据连接)
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
var deviceInfo = function(){
alert(navigator.connection.type);
}
function init(){
document.addEventListener("deviceready", deviceInfo, true);
}
</script>
</head>
<body onload="init();">
</body>
</html>
干杯!