从任何 p 元素中移除 id 属性:
$("button").click(function(){ $("p").removeAttr("id"); });
removeAttr() 方法从被选元素中移除属性。
$(_selector_).removeAttr(_attribute_)