jQuery 属性操作 removeAttr() 方法

jQuery 属性操作 removeAttr() 方法

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

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

 

1. 语法

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

 

2. 范例

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

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

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

下一节:jQuery 属性操作 removeClass() 方法

jQuery 教程

相关文章