jquery mobile 执行网页跳转的命令
时间: 2023-09-16 15:09:02 浏览: 79
要在 jQuery Mobile 中执行网页跳转,可以使用 `$.mobile.changePage()` 方法。这个方法可以将用户导航到另一个页面。
下面是一个简单的示例,演示如何使用 `changePage()` 方法执行网页跳转:
```html
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile 页面跳转示例</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<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>页面 1</h1>
</div>
<div data-role="content">
<p>这是页面 1 的内容。</p>
<a href="#" id="goToPage2">跳转到页面 2</a>
</div>
</div>
<!-- 第二页 -->
<div data-role="page" id="page2">
<div data-role="header">
<h1>页面 2</h1>
</div>
<div data-role="content">
<p>这是页面 2 的内容。</p>
<a href="#" id="goToPage1">返回页面 1</a>
</div>
</div>
<script>
$(document).on("page
阅读全文