スクロールしても消えない静的なフッター ナビゲーション バーを作成しようとしています。ここでスタックオーバーフローで多くの例を試しましたが、どれもうまくいきません。スクロールを開始すると、フッターが消えます。ここに私の完全なコードがあります:
<!DOCTYPE html>
<html>
<head>
<title>jQueryMoblie</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet"href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css"/>
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"</script>
<script type="text/javascript">
$(document).ready(function(){
$.("[data-role=footer]").setTouchToggleEnabled(false);
$.mobile.page.prototype.options.backBtnText = "indietro";
$('a.item').click(function(){
var id = $(this).attr('id');
$.mobile.changePage({
url: "result.php",
type: "get",
data: "id="+id
},"slide");
return false;
});
});
</script>
</head>
<body>
<div data-role="page" id="lista">
<div data-role="header">
<h1>Lista </h1>
</div>
<div data-role="content">
<ul data-role="listview" data-theme="d">
<?php
$type= "";
$type = $_REQUEST['type'];
include_once 'resultList.class.php';
$author->showList($type);
?>
</ul>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar"data-position="fixed" data-tap-toggle="false">
<ul>
<li><a href="#">One</a></li>
<li><a href="#">Two</a></li>
<li><a href="#">Three</a></li>
</ul>
</div>
</div>
</body>
</html>