多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# jQuery 属性操作 - removeAttr() 方法 ## 实例 从任何 p 元素中移除 id 属性: ``` $("button").click(function(){ $("p").removeAttr("id"); }); ``` ## 定义和用法 removeAttr() 方法从被选元素中移除属性。 ### 语法 ``` $(_selector_).removeAttr(_attribute_) ``` | 参数 | 描述 | | --- | --- | | _attribute_ | 必需。规定从指定元素中移除的属性。 |