朋友们,我开始使用PhoneGap + jQuery Mobile 开发AppLaud 应用程序。
Applaud 开始了一个新项目: - JQuery 1.7.2 - JQuery Mobile 1.3.1 - PhoneGap 1.9.0
我的文件夹资产如下:
- [assets]
- [www]
--- [jquery.mobile]
---- [images]
---- jquery-1.7.2.min
---- jquery.mobile-1.3.1.css
---- jquery.mobile-1.3.1.js
---- jquery.mobile-1.3.1.min.css
---- jquery.mobile-1.3.1.min.js
--- cordova-1.9.0.js
--- index.html
我的 index.html 文件包含以下内容:
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Minimal AppLaud App</title>
<script type="text/javascript" charset="utf-8" src="cordova-1.9.0.js"></script>
<script type="text/javascript" charset="utf-8">
var onDeviceReady = function() {
document.getElementById("devready").innerHTML = "OnDeviceReady fired.";
};
function init() {
document.addEventListener("deviceready", onDeviceReady, true);
}
</script>
</head>
<body onload="init();" id="stage" class="theme">
<h2>Minimal AppLaud App</h2>
<p>Your app goes here.</p>
<p>
<span id="devready">onDeviceReady not fired.</span>
</p>
</body>
</html>
我在 Eclipse IDE 中收到以下错误:
“令牌的语法错误”无效的正则表达式选项',可用的准确更正“-jquery.mobile-1.3.1.min.js - 第2行
“默认情况已定义” - jquery.mobile-1.3.1.js - 第 2034 行
“默认情况已定义” - jquery.mobile-1.3.1.js - 第 8700 行
可能会发生什么?有了这些错误,我什至无法测试应用程序。