jQuery 属性操作 removeAttr() 方法

jQuery 参考手册 文档操作jQuery 参考手册 文档操作

removeAttr() 方法从被选元素中移除属性。

 

1. 语法

$(selector).removeAttr(attribute)
参数 描述
attribute 必需。规定从指定元素中移除的属性。

 

2. 范例

从任何 p 元素中移除 id 属性:

$("button").click(function(){
  $("p").removeAttr("id");
});

我要试一试

jQuery 参考手册 文档操作jQuery 参考手册 文档操作

removeClass() 方法从被选元素移除一个或多个类。如果没有规定参数,则该方法将从被选元素中删除所有类。1. 语法:$(selector).removeClass(class)。class:可选。规定要移除的 class 的名称。