執行完代碼後發現寫在樣式表中的hover效果失效,改了好幾遍差點從新寫函數,後來發現很簡單,是優先級的問題,css()中的內容覆蓋了以前的樣式css
只須要在樣式後寫!important便可解決!函數
1 .filters-wrap li:hover { 2 background:#0085d7 !important; 3 } 4 .filters-wrap li:hover span { 5 color:white !important; 6 }
執行完代碼後發現寫在樣式表中的hover效果失效,改了好幾遍差點從新寫函數,後來發現很簡單,是優先級的問題,css()中的內容覆蓋了以前的樣式css
只須要在樣式後寫!important便可解決!函數
1 .filters-wrap li:hover { 2 background:#0085d7 !important; 3 } 4 .filters-wrap li:hover span { 5 color:white !important; 6 }