編碼的世界 / 優質文選 / 生涯

jQuery如何移除css樣式?


2022年7月31日
-   

解決辦法


1、移除全部樣式使用removeattr(“style”); 2、移除單個樣式使用css(“屬性”,“”);例如:
 <script type="text/javascript">
$(function(){
$("li").mouseover(function(){
//添加css樣式
$(this).css("background","#ffdd00");
});
$("li").mouseout(function(){
//移出css樣式
$(this).css("background","");
});

});
</script>

熱門文章