我已经按照 jQueryMobile 文档的说明在我的博客移动版本中设置了 jQueryMobile 插件。
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>
和描述页面如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Against All Odds</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
<link rel="stylesheet" href="_assets/css/jqm-docs.css"/>
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>my title</h1>
</div><!-- /header -->
<div data-role="content">
my description
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>
不幸的是,后退按钮中的图像没有出现在我的页面中。而且我还将 jQuerymobile 图像文件夹放入我的项目页面。有没有我忘记设置的配置?