2

我正在尝试使用 phonegap 和 eclipse 构建一个非常简单的 android 应用程序。我对 phonegap 非常陌生。当我运行应用程序时,页面会显示在模拟器中,但我的 javascript 警报功能不起作用。有人可以帮我吗?这是我的 index.html 文件。

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>

<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">


document.addEventListener("deviceready",onDeviceReady,false);


function onDeviceReady()
{
alert('hello');
}

</script>
</head>
<body>

<div data-role="page">
  <div data-role="header">
    <h1>Welcome To My Homepage</h1>
  </div>

  <div data-role="content">
    <p>Hello Phonegap!!</p>
  </div>

  <div data-role="footer">
    <h1>Footer Text</h1>
  </div>
</div> 

</body>
</html>
4

1 回答 1

2

在您的 html 页面中添加此 phonegap 版本标记。

<script src="cordova-x.x.x.js" charset="utf-8" type="text/javascript"></script>

如果没有这个,phonegap 事件将无法在您的页面上运行。

于 2013-11-14T11:43:47.713 回答