好的,有人能帮我弄清楚为什么"测试"li在下面的代码是不可见的?我检查了活动dom,元素似乎正在被处理:
<!DOCTYPE HTML>
<html>
<head>
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script 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.0/jquery.mobile-1.0.min.css" />
<script>
$(document).ready(function(){
$('<div data-role="content" class="content"><ul data-role="listview" data-inset="true"><li><a href="#im?at=animals">test</a></li></ul></div>').appendTo("#home").page();
$.mobile.changePage("#home", {transition: "none"});
});
</script>
</head>
<body>
<div id="home" data-role="page">
</div>
</body>
</html>
对changePage的调用不起作用,因为您只有一个默认可见/活动的页面。您可以通过触发create事件来强制更新活动页面。
$('<div data-role="content" class="content"><ul data-role="listview" data-inset="true"><li><a href="#im?at=animals">test</a></li></ul></div>').appendTo("#home");
$.mobile.changePage("#home", {transition: "none"});
$.mobile.activePage.trigger('create');
下面的元素将display
属性设置为none
,并且隐藏了它的兄弟元素:
<div data-role="content" class="content ui-page ui-body-c ui-content" tabindex="0" role="main">
CSS规则:
.ui-mobile [data-role="page"], .ui-mobile [data-role="dialog"], .ui-page {
top: 0;
left: 0;
width: 100%;
min-height: 100%;
position: absolute;
display: none;
border: 0;
}