jQuery Mobile を使い始めましたが、問題があります。2 つの HTML ドキュメントがあります。
- page1.html
- page2.html
- ページ2a
- page2b
問題は次のとおりです。
- page1.html から page2.html を参照すると、page2a が表示されますが、page2b を参照できません。
- page1.html から page2a を参照すると、page1.html にとどまります
- page2.html から page2a または page2b を参照すると、うまく動作します
私のソリューションの何が問題になっていますか? それを適切に機能させるための良い解決策はありますか?
参照用のコードは次のとおりです。
Page1.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page 1</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0-rc.1/jquery.mobile-1.3.0-rc.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0-rc.1/jquery.mobile-1.3.0-rc.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Single page</h1>
</div>
<div data-role="content">
<p>See <a href="page2.html">page 2</a>.</p>
<!-- <p>See <a href="page2.html#a">page 2a</a>.</p> -->
</div>
</div>
</body>
</html>
Page2.html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page 2</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0-rc.1/jquery.mobile-1.3.0-rc.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0-rc.1/jquery.mobile-1.3.0-rc.1.min.js"></script>
</head>
<body>
<!-- Start of first page: #a -->
<div data-role="page" id="a">
<div data-role="header">
<h1>Page 2a</h1>
</div>
<div data-role="content" >
<p><a href="#b" data-role="button" data-transition="slide">Show page "2b"</a></p>
</div>
</div>
<!-- Start of second page: #b -->
<div data-role="page" id="b">
<div data-role="header">
<h1>Page 2b</h1>
</div>
<div data-role="content">
<p><a href="#a" data-direction="reverse" data-transition="slide" data-role="button">Back to page "2a"</a></p>
</div>
</div><!-- /page b -->
</body>
</html>