这其实是css的优先级导致的。
js添加的属性是直接在标签增加style属性,优先级高于样式表的#和.选择器。style>id>class。
但是:hover伪类也失效了。说明style>css伪类>id>class。
给:hover的属性后面添加!important就可以了。
color: #fff !important;
设置了!important的样式优先级高于一切。
!important>style>id>class
时间: 2024-10-12 19:41:58
这其实是css的优先级导致的。
js添加的属性是直接在标签增加style属性,优先级高于样式表的#和.选择器。style>id>class。
但是:hover伪类也失效了。说明style>css伪类>id>class。
给:hover的属性后面添加!important就可以了。
color: #fff !important;
设置了!important的样式优先级高于一切。
!important>style>id>class