1

我有一个问题,我知道这不是这个门户网站上最好的问题。

但我的问题是我的移动应用程序上有 2 个 jquery 和 jquery mobile 库。

并且知道我添加的按钮将颜色从黑色变为白色.. 为什么?

这是我的代码:

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

<a href="#myPanel" data-icon="search" data-iconpos="notext" class="ui-btn-right" data-inline="true" data-direction="reverse">Search</a>
4

1 回答 1

3

今天版本的 jQuery Mobile css 文件有一个错误,样式不适用于您的按钮。建议,永远不要使用最新的 jQuery Mobile 文件。

现在使用这个稳定的 1.3.1 版本:

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

稳定版:http: //jsfiddle.net/Gajotres/nx5hm/

最新不稳定版本:http: //jsfiddle.net/Gajotres/2excE/

于 2013-05-16T21:25:14.177 回答