所以我已经让 jQuery 1.8.2 与 Phonegap 一起使用没有问题,但是只要我添加 jquery.mobile.1.2.0,默认的 Phonegap 示例就会中断。deviceready 事件停止触发。
索引.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
</div>
<input type="text" name="firstname" id="firstname" />
<a href="#" class="btn" onclick="displayHello();">Say Hello</a>
<script type="text/javascript" src="cordova-2.4.0.js"></script>
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
function displayHello(){
var name = document.getElementById("firstname").value;
navigator.notification.alert("My name is "+ name);
}
</script>
</body>
</html>
index.js
var app = {
// Application Constructor
initialize: function() {
this.bindEvents();
},
// Bind Event Listeners
//
// Bind any events that are required on startup. Common events are:
// 'load', 'deviceready', 'offline', and 'online'.
bindEvents: function() {
document.addEventListener('deviceready', this.onDeviceReady, false);
},
// deviceready Event Handler
//
// The scope of 'this' is the event. In order to call the 'receivedEvent'
// function, we must explicity call 'app.receivedEvent(...);'
onDeviceReady: function() {
app.receivedEvent('deviceready');
},
// Update DOM on a Received Event
receivedEvent: function(id) {
var parentElement = document.getElementById(id);
var listeningElement = parentElement.querySelector('.listening');
var receivedElement = parentElement.querySelector('.received');
listeningElement.setAttribute('style', 'display:none;');
receivedElement.setAttribute('style', 'display:block;');
console.log('Received Event: ' + id);
}
};
所以这是Phonegap附带的默认代码示例,我只添加了
<script type="text/javascript" src="js/jquery.mobile-1.2.0.min.js"></script>
在 index.html 中。
不知道发生了什么,因为似乎其他人已经让 Phonegap 和 jQuery Mobile 一起工作得很好。
我已经尝试将 js 简化并只是调用 deviceready 事件。
而且我已经尝试遵循此解决方案,而在其下方发布的其他解决方案无济于事。
一起使用 JQuery-Mobile/Phonegap 的正确方法?
但同样的事情也会发生。使用 jQuery Mobile deviceready 永远不会触发,没有它,它会触发良好。
任何帮助,将不胜感激!也许我只是在这里遗漏了一些简单的东西。
我还尝试了 jQuery 和 jQuery Mobile 的不同版本组合,但没有成功。我正在运行 Android Phonegap 版本和 cordova-2.3.0。我最近尝试升级到cordova-2.4.0,看看是否有帮助,但没有...
更新:LogCat/DDMS 中没有抛出错误