考虑以下XHTML
页面,page1.xhtml
其中包含 Jquery Mobile 脚本:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Page 1</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<a href="page2.xhtml">Go to page 2</a>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
单击链接时,page2.xhtml
未加载。(仅显示加载动画图像,仅此而已)
这个问题只出现在XHTML
页面上,而不是 HTML。
我使用三星 GT-S5302 设备和一些 Android(手机和平板电脑)模拟器进行了测试。