0

这是我正在处理的一些代码,但现在 JQuery Mobiles 元素正在工作。我已经有一段时间没有编码了。另外,如果重要的话,我正在使用 Sumlime Text 2。

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>.......</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>

<body>
    <div date-role="page" data-theme="a">
        <div date-role="header">
            <!--Main Nav Bar-->
            <a href="MainPage.html" data-icon="home" data-iconpos="right">Home</a>
            <h1>HOME</h1>
        </div>

        <div data-role="content">
            hello
        </div>
    </div>
</body>
</html>
4

1 回答 1

0

从外观上看,一切似乎都写得正确。唯一可能是它没有使用正确的 HTML 5 文档类型,而是使用了 html4。Jquery mobile 严重依赖 HTML5

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Template</title>
</head>
<body>
</body>
</html>
于 2013-03-05T02:30:22.607 回答