链接JQuery Mobile的问题

时间:2014-12-16 14:58:58

标签: jquery jquery-mobile

我目前正在为我的公司制作一个网站,并在连接JQuery mobile时遇到过这个问题。在我链接JQuery mobile之前,一切都很好,所有元素都是有序的。但是,一旦我链接了JQuery,移动文本就出现在页面底部,上面写着“正在加载”。根本没有任何事情发生在表现元素上,没有任何东西被放在一处,但是这个加载可以在网页的底部看到。我从来没有经历过这个,也无法在网上找到任何东西,所以任何帮助都将不胜感激。我也在使用Bootstrap 3。

我的代码链接脚本:

<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,600' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<link href = "style.css" rel = "stylesheet">

正常页面的图片:

normal image

问题页面:

problem image

1 个答案:

答案 0 :(得分:0)

您也缺少JQuery Mobile CSS文件。

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />

在JQuery Mobile js引用之后将其添加到页头元素应该为您解决问题。