您好,欢迎来到哗拓教育。
搜索
您的当前位置:首页jQuery添加样式属性的优先级别

jQuery添加样式属性的优先级别

来源:哗拓教育

jQuery类中添加多个属性

$('#five .a')
.css({
 color:'blue',
 border:'2px solid green',
 background:'blue'
});

jQuer为元素添加类

$('#five .a')
.addClass('funny');

HTML code

 <style>
.funny{
 font-size: 21px;
 background-color: gray ;
 padding: 10px;
 color: yellow ;
}
 </style>
<div id="five">
 <div class="a">A</div>
</div>

可以看到jQuery类中添加多个属性渲染效果是以内嵌样式出现的。

而jQuer为元素添加的类没有内嵌样式的优先级高

可以看到渲染效果中没有funny的background-color: gray ;color: yellow ;属性。

Copyright © 2019- huatuo2.com 版权所有 湘ICP备2023021991号-2

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务