1

我正在关注入门代码,

这是代码,

<!DOCTYPE html>

 <html>
<head>
    <title>jQuery Mobile</title>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, 
    initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
    <link href="lib/jquery/jquery.mobile-1.3.2.css" rel="stylesheet" type="text/css" />
    <script src="lib/jquery/jquery.mobile-1.3.2.js"></script>
    <script src="lib/jquery/jquery-1.9.1.js"></script>

</head>
<body>
    <div data-role="page">
        <div data-role="header">
            <h1>HOME</h1>
        </div>
    </div>
    <div data-role="content">
        <a href="02_menuform.html" data-role="button">MENU</a>
        <a href="02_busform.html" data-role="button">BUS</a>
        <a href="02_restaurantform.html" data-role="button">RESTAURANT</a>
    </div>
</body>
</html>

但我有这样的错误,

Uncaught TypeError: Cannot set property 'mobile' of undefined jquery.mobile-1.3.2.js:26
 (anonymous function) jquery.mobile-1.3.2.js:26
(anonymous function) jquery.mobile-1.3.2.js:27
(anonymous function) jquery.mobile-1.3.2.js:22
(anonymous function) jquery.mobile-1.3.2.js:24

它不应用 jquery 移动样式表(按钮和 css 之类的东西)

问题是什么?

4

1 回答 1

7

您需要将 jquery 放在移动 js 之前。

代替

<script src="lib/jquery/jquery.mobile-1.3.2.js"></script>
<script src="lib/jquery/jquery-1.9.1.js"></script>

<script src="lib/jquery/jquery-1.9.1.js"></script>
<script src="lib/jquery/jquery.mobile-1.3.2.js"></script>

此外,理想情况下,您<div data-role="content">应该是<div data-role="page">.

于 2013-10-08T04:00:43.840 回答