1

我知道这个问题到处都有描述和回答,尽管我找不到我的问题是什么。这是我的代码:

    <!doctype html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
        <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script> 
        <script src="script.js" type="text/javascript"></script>
        <!--<meta http-equiv="Content-Type" content="txt/html; charset=utf-8" />

        <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>    
        <script src="mobileJquery.js"></script>-->
    </head>
    <body>
        <div>
            <h1><a href="http://www.stronteb.eu">test application</a></h1>
            <p id="testparagraaf">test</p>
            <img src="stront.gif"/>
        </div>

        <!--<script src="script.js" type="text/javascript"></script>-->
    </body>
</html>

和 script.js:

$( document ).on('pageload', 'index.html', function(e){       
    alert('Pageload');
});

我知道 jquery 需要在 script.js 之前加载,这里就是这种情况。我尝试将代码放入html中,没有用...

谁知道这里的问题是什么?

亲切的问候

4

1 回答 1

9

您没有加载 jQuery 本身。您需要在加载 jQuery Mobile 之前加载 jQuery。jQuery Mobile 不是 jQuery,也不包含 jQuery。

jQuery Mobile 就像 jQuery UI:它本质上是一个 jQuery 插件,你必须先加载 jQuery,然后才能加载插件。

于 2013-10-08T21:59:58.413 回答