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