以下是一个简单的 jQuery Mobile 示例,包含一个主页和一个详细页面,以演示页面导航和一些基本的元素:
<!DOCTYPE html>
<html>
<head>
  <title>jQuery Mobile 示例</title>
  <!-- 引入 jQuery Mobile CSS 文件 -->
  <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
  <!-- 引入 jQuery 文件 -->
  <script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
  <!-- 引入 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="home-page">

    <div data-role="header">
      <h1>主页</h1>
    </div>

    <div data-role="content">
      <p>欢迎来到主页!</p>
      <!-- 导航链接到详细页面 -->
      <a href="#detail-page" data-role="button" data-transition="slide">查看详情</a>
    </div>

    <div data-role="footer">
      <h4>© 2023 jQuery Mobile 示例</h4>
    </div>

  </div>

  <!-- 详细页面 -->
  <div data-role="page" id="detail-page">

    <div data-role="header">
      <h1>详细页面</h1>
    </div>

    <div data-role="content">
      <p>这是详细页面的内容。</p>
      <!-- 返回主页的导航链接 -->
      <a href="#home-page" data-role="button" data-transition="slide" data-direction="reverse">返回主页</a>
    </div>

    <div data-role="footer">
      <h4>© 2023 jQuery Mobile 示例</h4>
    </div>

  </div>

</body>
</html>

在这个示例中,我们创建了两个页面,分别是主页(home-page)和详细页面(detail-page)。导航链接使用 href 属性指向目标页面的 ID,并使用 data-transition 和 data-direction 属性定义了页面切换时的过渡效果和方向。

这个简单的示例演示了如何使用 jQuery Mobile 创建多页面应用,并通过导航链接在页面之间进行切换。你可以根据需要添加更多页面和自定义样式。确保引入了正确版本的 jQuery 和 jQuery Mobile,以确保样式和脚本的正确运行。


转载请注明出处:http://www.zyzy.cn/article/detail/9438/jQuery Mobile