解決辦法
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>