您可以尝试添加rel="external"
到您的链接,然后就可以了。
例子:
假设您有 2 个 HTML 文件:index.html
和page.html
,并且page.html
包含 2 个 jQuery Mobile 页面:#p1
和#p2
.
现在,假设您想#p2
通过index.html
单击链接来访问<a>
。
您需要rel="external"
按如下方式添加到您的链接:
<a href="page.html#p2" rel="external">GO TO PAGE 2 !</a>
完整示例:
index.html
:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>
</script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<h1>INDEX.HTML</h1>
<!-- YOUR LINK TO ACCESS #P2 IN PAGE.HTML -->
<a href="page.html#p2" rel="external">GO TO PAGE 2 "#P2" !</a>
</div>
</div>
</body>
</html>
page.html
:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<!-- PAGE 1 #P1 -->
<div data-role="page" id="p1">
<div data-role="content">
<h1>PAGE 1</h1>
</div>
</div>
<!-- PAGE 2 #P2 -->
<div data-role="page" id="p2">
<div data-role="content">
<h1>PAGE 2</h1>
</div>
</div>
</body>
</html>