2014-07-17 67 views
0

JQuery mobile頁面不斷顯示AJAX微調這樣的:jQuery Mobile的不斷顯示阿賈克斯微調

enter image description here

這是HTML代碼的所有引用jquery

<!DOCTYPE html> 
<html> 
<head lang="en"> 
<meta charset="UTF-8"> 
<title></title> 
<script src="static/jquery.js"></script> 
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 

<link href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" rel="stylesheet" type="text/css"/> 
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css"/> 
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> 
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script> 
<script src="static/jquery.mobile.js"></script> 
</head> 
<body> 

</body> 
</html> 

我該怎麼辦去掉它?

+0

您可以查看靜態/的jquery.js和靜態/ jquery.mobile.js – Anurag

+3

它看起來像您引用的所有腳本和CSS兩次每次的內容。嘗試一個鏈接到CSS,然後爲jQuery添加一個腳本標籤,然後爲jQuery Mobile添加一個腳本標籤。 – ezanker

+0

您的jQuery移動樣式表的鏈接有一個空格。 –

回答

0

如果我明白你的意思。

您需要隱藏ultil頁面完成加載。 試試這個:

jQuery(window).load(function() { 
    jQuery('#loading').hide(); 
}); 
+0

不,我的朋友,這並沒有幫助。 –