jquery – 选择器上的类的顺序是否重要?如果是,我可以指定订购吗?

前端之家收集整理的这篇文章主要介绍了jquery – 选择器上的类的顺序是否重要?如果是,我可以指定订购吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有区别:
<span id="test" class="one two"></span>

<span id="test" class="two one"></span>

如果这些类上存在冲突的CSS规则,那么顺序是否重要?

在jQuery中有任何API重新排序吗?当我调用addClass()时它总是在结束吗?

解决方法

订单无关紧要.

http://jsfiddle.net/rc8Yu/

css precedence

这里的重要部分是

If two rules are equal in all of the above,the one declared last wins. CSS embedded in the html always come after external stylesheets regardless of the order in the html

原文链接:https://www.f2er.com/jquery/178547.html

猜你在找的jQuery相关文章