添加Jquery Mobile会破坏CSS

时间:2014-11-21 17:22:10

标签: jquery html css jquery-mobile

当我使用CDN将Jquery mobile添加到我的HTML中时;

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>

它完全接管我的风格和打破了我的设计。

我有什么办法可以这样做,而不是在整个项目中使用Jquery的CSS吗?

2 个答案:

答案 0 :(得分:1)

jquery.mobile.css有很多类和属性可能与你的类冲突,这些类的属性与每个标记或类所期望的属性不同。

答案 1 :(得分:0)

根据我的经验,仅包含jquery.mobile.css就是没有害处的,当加载了-大多数是不必要的-jquery.mobile脚本时,麻烦就来了。解决方案是仅使用所需的功能,在我的情况下为8k vs 200k,问题就消失了。

此处有更多详细信息(因为我无法发表评论):

jQuery Mobile breaks links. What is the correct use?