jQuery如何移除css样式?

解决办法

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>

你可能感兴趣的:(前端技术,JavaWeb入门编程)