我正在 Eclipse IDE 中使用 PhoneGap 创建一个 android 项目。
现在我想使用 Ripple Emulator 而不是 Android Virtual Device Manager (AVD),因为 AVD 非常慢。
我在我的 Google Chrome 中安装了扩展并启用了“允许访问文件 URL”选项。
当我打开我的 index.html 页面时,我得到一个像这样的 javascript 弹出窗口:
如果我单击“确定”或“取消”,页面就会冻结,所以我无法启用波纹模拟器...。
这是我的“index.html”文件:
<!DOCTYPE HTML>
<html>
<head>
<title>PhoneGap Testing</title>
<meta http-equiv="Content-type" content="text/html;charset=utf-8">
<meta name="viewport" id="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
function onBodyLoad(){
document.addEventListener("deviceready", onDeviceReady, false);
}
function onDeviceReady(){
navigator.notification.alert("PhoneGap is ready!");
}
</script>
</head>
<body onload="onBodyLoad()">
<h1>Hello PhoneGap</h1>
<p>This is a sample app</p>
</body>
</html>
有谁知道我为什么会弹出这个窗口?