0

我的代码:

<!DOCTYPE html> 
<html> 
<head>
<title>a</title> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<link rel="stylesheet" href="jquery.mobile-1.2.0-alpha.1.min.css" />
<script src="jquery-1.8.0.min.js"></script>
<script src="jquery.mobile-1.2.0-alpha.1.min.js"></script>
</head>
</html>

<script>
$(document).ready(function(){
$.mobile.loading('show');});
</script>

但是漂亮的微调器图像没有显示出来。它只是在屏幕中间显示一个灰色圆圈。

4

1 回答 1

1

我认为您的语法已关闭,要显示加载消息,您应该使用$.mobile.showPageLoadingMsg还要确保包含图像文件夹。

编辑:

抱歉,我看到您使用的是 JQM 1.2 的 alpha,看起来该$.mobile.loading方法已添加到此版本中。无论如何,请确保您拥有 JQM 图像文件夹,并且它与 js 文件位于同一文件夹中。要测试尝试用指向 CDN 的链接替换您的链接

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0-alpha.1/jquery.mobile-1.2.0-alpha.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0-alpha.1/jquery.mobile-1.2.0-alpha.1.min.js"></script>
于 2012-08-15T18:27:16.937 回答