我正在尝试在页脚部分的网格中实现按钮布局。但我不确定为什么按钮没有按照文档正确扩展。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.js"></script>
<script>
</script>
</head>
<body>
<div class="ui-bar" data-role="footer" data-position="fixed">
<div class="ui-grid-a">
<div class="ui-block-a"><a href="http://google.com" data-role="button" >Google</a></div>
<div class="ui-block-b"><a href="http://google.com" data-role="button" >Google</a></div>
</div>
</div>
</div>
</body>
</html>
这是我的样本小提琴http://jsfiddle.net/Axs6G/
不确定为什么按钮没有正确扩展并占据每个网格的50%。它只是站在一边。
Newbie Jquery Mobile开发人员。
答案 0 :(得分:0)
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.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>
<style>
.full-width-buttons .ui-btn {
display: block;
}
</style>
</head>
<body>
<div data-role="page">
<div data-role="footer" class="ui-bar" data-position="fixed">
<div class="ui-grid-a full-width-buttons">
<div class="ui-block-a"><a href="#" data-role="button">Prev</a></div>
<div class="ui-block-b"><a href="#" data-role="button">Next</a></div>
</div>
</div>
</div>
</body>
</html>