4

所以我已经让 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 中没有抛出错误

4

4 回答 4

0

I noticed that the browser does not work, but using the emulator or PhoneGap build ondeviciready event and the same example works!

于 2013-02-24T19:07:02.467 回答
0

不久前我遇到了同样的问题,最后我扔掉了 phonegap 的启动器。

我建议这样做:

<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">
    document.addEventListener("deviceready", onDeviceReady, false);
    function onDeviceReady() {
        // your functions here
    }
</script>

我希望它有帮助

于 2013-02-20T09:52:02.757 回答
0

尝试放置scripts above jquery mobile library.

<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/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>
<script type="text/javascript" src="js/jquery.mobile-1.2.0.min.js"></script>

更新:

<script type="text/javascript">
    $(document).on('pageinit', function($){
        app.initialize();
    });
</script>
于 2013-02-20T09:44:57.780 回答
0

即使将库添加到头部后,我也遇到了完全相同的问题,但是一旦我将 cordova.js 移动到 jquery-mobile 下面,deviceready 就会再次开始触发。

<head>
<script type="text/javascript" src="jqueryMobile/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="jqueryMobile/jquery.mobile-1.4.3.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
    app.initialize();
</script>
</head>
于 2014-08-12T20:06:19.643 回答