如何在 jQuery Mobile 中添加子页脚
我使用了 data-role="footer" 但我希望蓝色条下方的 2 个链接也成为页脚的一部分。
<div data-role="footer" class="footer" id="ftrMain" name="ftrMain" data-position="fixed">
© 2011 Probity Investigations
</div>
<div data-role="footer" id="subfooter" name="subfooter" >
<div style="float: left;">
<a href="../../agents/index.php" rel="external">Full Site</a>
</div>
<div style="float: right;">
<a href="logout.php" rel="external">Logout</a>
</div>
</div>
然后我想把它固定在底部。我尝试使用 data-theme="c" 创建第二个页脚,但它不太匹配。
基本上是这样的:
I used the data-role="footer" but I want 2 links below that blue bar to also be part of the footer.
<div data-role="footer" class="footer" id="ftrMain" name="ftrMain" data-position="fixed">
© 2011 Probity Investigations
</div>
<div data-role="footer" id="subfooter" name="subfooter" >
<div style="float: left;">
<a href="../../agents/index.php" rel="external">Full Site</a>
</div>
<div style="float: right;">
<a href="logout.php" rel="external">Logout</a>
</div>
</div>
Then I want to fix it to bottom. I tried creating the second footer with data-theme="c" but it doesnt quite match.
Basically like this:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与图片不完全一样,但也许你可以玩一下。
实例:http://jsfiddle.net/gN5Fy/20/
导航栏文档:http://jquerymobile.com/demos/1.0a4.1/#文档/工具栏/docs-navbar.html
Not exactly like the picture but maybe you could play with it.
Live Example: http://jsfiddle.net/gN5Fy/20/
Documentation on navbars: http://jquerymobile.com/demos/1.0a4.1/#docs/toolbars/docs-navbar.html
这最终解决了它:
This finally fixed it: