jQuery Mobile:更新导航栏时替代 .trigger('create') 或 .page()?
我有以下 jQuery Mobile HTML 代码,导航栏的内容是使用 javascript 设置的。 jQuery mobile 在静态设置时设置导航栏样式,但是当您稍后使用 javascript 设置它的内容 (html) 时,您必须做一些额外的工作才能使其工作:
<div data-role="header">
<h1 id="title">App</h1>
</div><!-- /header -->
<div data-role="content" id="content">
<p>Loading...</p>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar" id="navbar">
<ul id="menu">
</ul>
</div>
</div><!-- /footer -->
</div><!-- /page -->
trigger('create');
一般用于解决使用 javascript/ajax 设置时无样式标记的问题。 但是,它似乎只适用于data-role="content"
,而不适用于#navbar
。下面的脚本应该可以工作,但菜单没有样式......
$(function(){
$("#menu").html("<li><a href='#'>Test Styling</a></li>").trigger('create');
});
有什么想法如何解决这个问题吗?我尝试过 page();
和 .listview('refresh');
但没有结果。
I have the following jQuery Mobile HTML code, the navbar's content is set using javascript. jQuery mobile styles the navbar when it's set statically, but when you set the content of it (html) later using javascript, you have to do some extra work to make it work:
<div data-role="header">
<h1 id="title">App</h1>
</div><!-- /header -->
<div data-role="content" id="content">
<p>Loading...</p>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar" id="navbar">
<ul id="menu">
</ul>
</div>
</div><!-- /footer -->
</div><!-- /page -->
trigger('create');
is generally used to solve the problem of unstyled markup when set using javascript/ajax. However, it seems only to work within data-role="content"
and not for #navbar
. The script below should work but leaves the menu unstyled...
$(function(){
$("#menu").html("<li><a href='#'>Test Styling</a></li>").trigger('create');
});
Any ideas how to solve this? I have tried page();
and .listview('refresh');
with no results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在附加列表项后调用
navbar
方法:编辑:
您还可以尝试动态创建导航栏:
Try calling the
navbar
method after appending the list item:Edit:
You could also try creating the navbar dynamically :