私は次のコードを持っています:
<div data-role="page" id="Page1" >
<!-- Footer here -->
<div data-role="footer" data-position="fixed" data-id="id-footer1">
<div data-role="navbar">
<ul>
<li><a href="#Page1" class="ui-btn-active ui-state-persist">Page1</a></li>
<li><a href="#Page2" data-transition="pop">Page2</a></li>
</ul>
</div>
</div><!-- /footer -->
</div><!-- /page -->
<div data-role="page" id="Page2" >
<!-- Footer here -->
<div data-role="footer" data-position="fixed" data-id="id-footer1">
<div data-role="navbar">
<ul>
<li><a href="#Page1" >Page1</a></li>
<li><a href="#Page2" data-transition="pop"class="ui-btn-active ui-state-persist">Page2</a></li>
</ul>
</div>
</div><!-- /footer -->
</div><!-- /page -->
上記のコードは、次のスクリプトを使用すると機能します。つまり、ページ1にはスライド効果があり、ページ2にはポップ効果があります。
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
ただし、以下を使用すると、スライド効果とポップ効果がなくなります。
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
新しいJQMバージョンがページ遷移に影響を与えたようですか、それとも何かが足りませんか?誰か確認できますか?
ありがとう。