您还可以从HTML元素中删除属性。
removeAttr()方法用于删除元素的任何属性。
在下面的示例中,我们删除了表的边框和类属性:
$("table").removeAttr("border"); $("table").removeAttr("class");
$("").("");