0

これはしばらくの間私を悩ませているので、できれば助けてください。

だから私は空のページから始めています:

<!DOCTYPE html>
<html>
<head>
    <title>Page Title</title>

    <meta name='viewport' content='width=device-width, initial-scale=1'>

<link rel='stylesheet' href='http://code.jquery.com/mobile/1.4.0-rc.1/jquery.mobile-1.4.0-rc.1.min.css'>
<script src='http://code.jquery.com/jquery-1.10.2.min.js'></script>
<script src='http://code.jquery.com/mobile/1.4.0-rc.1/jquery.mobile-1.4.0-rc.1.min.js'></script>
</head>
<body>

</body>
</html>

</body>
</html>

次に、jqm ページを html に挿入します。

$('body').append("<div id='index' data-role='page'><div data-role='header'><h1>Page Title</h1></div><!-- /header --><div data-role='content'><ul data-role='listview'><li>test</li><li>test</li><li>test</li></ul><p>Page content goes here.</p></div><!-- /content --><div data-role='footer'><h4>Page Footer</h4></div><!-- /footer --></div><!-- /page -->")

最後に、このページのマークアップを再生成/更新します。

$("body").enhanceWithin()

質問は、 $.mobile.navigate('#index') も $.mobile.changePage('#index') も機能していないように見えるため、プログラムでこのページに移行するにはどうすればよいですか?

 $(":mobile-pagecontainer").pagecontainer("getActivePage") 

戻り値

オブジェクト[div#index.ui-page]

 $(':mobile-pagecontainer').pagecontainer('change', '#index')

戻り値

オブジェクト[body.ui-mobile-viewport]

ただし、インデックス ページはまだ非表示のままです .....

jquery.mobile-1.4.0-rc.1 を使用しているのをご覧のとおり、助けてください!

4

1 に答える 1