这一直困扰着我一段时间,所以如果可以,请提供帮助。
所以我从空页开始:
<!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,请帮助!