我一直在小型网站上工作,现在我想使用jQuery mobile添加一个交换机,因为它需要在移动设备上运行良好。但是当我添加必要的文件时,它会通过在输入文件周围添加div来扰乱我的整个标记。将类添加到body和div,并为div和类添加样式,从而破坏我的整个布局。
有什么意义?这使得我不想使用jQuery Mobile,因为现在我必须在所有地方编写例外:/
有人可以向我解释为什么会这样吗?
答案 0 :(得分:1)
使用custom jQuery Mobile时,头部中的链接应按如下方式放置:
<!-- structure for custom themes -->
<link rel="stylesheet" href="jquery.mobile.custom.structure.min.css"/>
<link rel="stylesheet" href="jquery.mobile.custom.theme.min.css"/>
<script src="jquery-1.9.1.min.js"></script>
<!-- load jQM after jQuery -->
<script src="jquery.mobile.custom.min.js"></script>
然后,您需要初始化小部件,每个小部件都有自己的功能。
$(function () {
$("#flip-checkbox-ID").flipswitch(); /* initialize flip-switch*/
});