我正在玩这个; http://usman.it/themes/charisma/模板。
它使用jquery.uniform.min.js进行样式设置,我无法将其关闭,因为我希望手动设置样式。这就是他们所说的;
// Avoid styling some elements
$("select").not(".skip_these").uniform(); // Method 1
$('select[class!="skip_these"]').uniform(); // Method 2
html:
<input class="skip_these" type="radio" name="test" value="0">
但这没有任何作用。我担心它的完整版本uniform.js。在这种情况下,uniform.min.js不是从其引用的部分
开始的<script src="js/jquery.uniform.min.js"></script>
谁能看到我哪里出错?
答案 0 :(得分:0)
您在示例中定位了一个选择标记,并将一个单选按钮添加为HTML。
根据您的上述代码,您可以将其更改为
$('select, input').not('.skip_these').uniform();
,因为<select>
!= <input>
。
只是仅供参考,就功能而言,“完整”和缩小版本之间从来没有区别。它只是在实际文件大小方面缩小了。