皆さん、私は 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
何が起こっているのでしょうか?これらのエラーにより、アプリケーションをテストすることさえできません。