jquery mobile固定(始终在顶部)标题
我已经浏览了 stackoverflow 上的其他帖子,但对于这样一个简单的任务来说,它们似乎太复杂了。
我想要做的就是在我的移动应用程序顶部有一个固定标题,即使我滚动“列表视图”,该标题也始终保留在那里。请告诉我们实现这一目标的最简单方法。现在,当我向下滚动时,标题确实出现,但点击后它就消失了。我怎样才能破解这个 jquery 消失行为? 谢谢!
我有这个:
<!DOCTYPE html>
<html>
<head>
<title>Testing Jquery</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview" data-theme="g">
<li><a href="#">Item1</a></li>
<li><a href="#">Item2</a></li>
<li><a href="#">Item3</a></li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>
I have looked through other posts on stackoverflow but they seem too complicated for such a simple task.
All I want to do is have a fixed header on top my mobile app that will ALWAYS stay there even when I scroll the "listview". Please tell the simplest way to achieve this. Right now when I scroll down the header does appear but after tapping it goes away. How can I hack this jquery go away behaviour?
Thanks!
I have this:
<!DOCTYPE html>
<html>
<head>
<title>Testing Jquery</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview" data-theme="g">
<li><a href="#">Item1</a></li>
<li><a href="#">Item2</a></li>
<li><a href="#">Item3</a></li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 jquerymobile.com 检查此文档 。
希望这有帮助。
Check this doc from jquerymobile.com .
Hope this helps.