我正在使用 Phonegap for iOS 构建我的第一个应用程序。我正在尝试获取加速度计值并将其显示为屏幕上的警报。我有最新版本的cordova-2.3.0。这是 index.html 文件的代码 -
<!DOCTYPE html>
<html>
<head>
<title>PhoneGap Device Ready Example</title>
<script type=”text/javascript” charset=”utf-8” src=”cordova-2.3.0.js”></script>
<script type=”text/javascript” charset=”utf-8”>
document.addEventListener(“deviceready”, onDeviceReady, false);
function onDeviceReady() {
navigator.accelerometer.getCurrentAcceleration(onSuccess, onError);
}
// onSuccess: Get a snapshot of the current acceleration
//
function onSuccess(acceleration) {
alert('Acceleration X: ' + acceleration.x + '\n' +
'Acceleration Y: ' + acceleration.y + '\n' +
'Acceleration Z: ' + acceleration.z + '\n' +
'Timestamp: ' + acceleration.timestamp + '\n');
}
// onError: Failed to get the acceleration
//
function onError() {
alert('onError!');
}
</script>
</head>
<body>
<h1> Example </h1>
<p>getCurrentAcceleration </p>
</body
</html>
然而,什么也没有发生。我得到一个白屏,上面写着 Example 和 getCurrentAcceleration。
有人可以帮忙吗?
谢谢