也许有一些我看不到的明显的东西,但我认为在 div 中使用 data-role=page 设置 data-theme 应该为所有内容设置它:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</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 type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page" data-theme="b">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
但我还是得到了默认主题A
我做错了什么?或者这是一个错误? 它在 1 alpha 4 中有效,但在 1 final 中无效。
请您参考如下方法:
查看文档,http://jquerymobile.com/demos/1.0/docs/pages/pages-themes.html 它具体说:“但是,页眉和页脚将默认为主题“a”。例如,如果您想要一个页面,其所有元素(包括页眉和页脚)只有主题“b”,您将需要为页面 div 以及页眉和页脚 div 指定 data-theme="b"。"
所以这不是一个错误。