在 jQuery Mobile 中,页面的创建和定义是通过 <div> 元素的 data-role="page" 属性来实现的。以下是一个简单的 jQuery Mobile 页面的示例:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>jQuery Mobile Page</title>
    <!-- 引入 jQuery 核心库 -->
    <script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
    <!-- 引入 jQuery Mobile 样式表 -->
    <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
    <!-- 引入 jQuery Mobile 脚本文件 -->
    <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>

<!-- 第一个页面 -->
<div data-role="page" id="page1">
    <div data-role="header">
        <h1>Page 1</h1>
    </div>
    <div data-role="content">
        <p>This is the content of Page 1.</p>
        <a href="#page2" data-transition="slide">Go to Page 2</a>
    </div>
    <div data-role="footer">
        <h4>Footer Text</h4>
    </div>
</div>

<!-- 第二个页面 -->
<div data-role="page" id="page2">
    <div data-role="header">
        <h1>Page 2</h1>
    </div>
    <div data-role="content">
        <p>This is the content of Page 2.</p>
        <a href="#page1" data-transition="slide" data-direction="reverse">Go back to Page 1</a>
    </div>
    <div data-role="footer">
        <h4>Footer Text</h4>
    </div>
</div>

</body>
</html>

在这个例子中,我们创建了两个页面(Page 1 和 Page 2)。每个页面都由一个 <div> 元素包装,并添加了 data-role="page" 属性。页面的头部(header)、内容(content)、底部(footer)等区域也有相应的 data-role 属性。

在页面之间进行导航是通过超链接 <a> 实现的。超链接的 href 属性中使用目标页面的 ID(例如 #page2)来指定要跳转的页面。data-transition 属性指定了页面切换的过渡效果,这里使用了 "slide"。data-direction 属性用于指定页面切换的方向,可以是 "reverse" 表示反向。

这只是一个简单的例子,你可以根据需要添加更多页面和定制页面内容。 jQuery Mobile 提供了许多组件和选项,可帮助你轻松创建富有交互性的移动应用。详细的文档和示例可以在[官方文档](https://demos.jquerymobile.com/1.4.5/)中找到。


转载请注明出处:http://www.pingtaimeng.com/article/detail/9418/jQuery Mobile