从所有的 <p> 元素移除样式属性:
$("button").click(function(){ $("p").removeAttr("style"); });
removeAttr() 方法从被选元素移除一个或多个属性。
$(selector).removeAttr(attribute)
从被选元素移除若干个属性 如何从被选元素移除 id 和 class 属性。