0

我正在尝试让 phonegap 3.0 加载 jquery,但什么也没发生。

例如这有效:

<!DOCTYPE html>
<html>
    <head>
        <meta 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">
            <input type="button" value="click me" id="myButton" onclick="alert('hello')" />
        </div>
        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
        <script type="text/javascript">
            app.initialize();
        </script>
    </body>
</html>

但这不会:

<!DOCTYPE html>
<html>
    <head>
        <meta 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">
            <input type="button" value="click me" id="myButton" />
        </div>
        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
        <script type="text/javascript" src="js/jquery.js"></script>
        <script type="text/javascript">
            app.initialize();

            $(document).ready(function(){
               $('#myButton').click(function(){
                   alert('hello');
               });
             });
        </script>
    </body>
</html>

我不能为我的生活弄清楚这一点。我在正确的目录中有 jquery

4

2 回答 2

2

您的 jQuery 代码需要在内部运行onDeviceReady(在 index.js 中找到)而不是 document.ready。

于 2013-09-30T16:36:13.833 回答
0

我不确定具体是什么问题,但我更新了 Xcode,现在一切正常。此外,在我更新 Xcode 之前,简单地将它放在 onDeviceReady 中仍然行不通。

于 2013-09-30T16:54:59.997 回答