jquery 清除style样式

$("#show").removeAttr("style"); //ie,ff均支持
 
$("#show").attr("style","");   //ff支持,ie不支持 
 $("p:first").removeClass("intro");

 
原文地址:https://www.cnblogs.com/sprinng/p/4988866.html