jQuery Mobile入门错误

时间:2013-10-08 03:58:25

标签: jquery jquery-mobile

我正在关注入门代码,

这是代码,

<!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类型的东西)

问题是什么?

1 个答案:

答案 0 :(得分:7)

您需要在移动设备之前放置您的jquery。

<强>替换

<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">