小码哥的IT人生

HTML DOM removeAttribute() 方法

JavaScript基础 2022-06-08 11:30:38小码哥的IT人生shichen

HTML DOM removeAttribute() 方法

实例

删除 header 元素的 style 属性:

document.getElementsByTagName("H1")[0].removeAttribute("style");

删除属性之前:

Hello World

删除属性之后:

Hello World

完整实例:

<!DOCTYPE html>
<html>
<body>
<h1 style="color:red">Hello World</h1>
<p id="demo">点击按钮来删除标题中的 style 属性。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
document.getElementsByTagName("H1")[0].removeAttribute("style"); 
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

removeAttribute() 方法删除指定的属性。

此方法与 removeAttributeNode() 方法的差异是:removeAttributeNode() 方法删除指定的 Attr 对象,而此方法删除具有指定名称的属性。结果是相同的。同时此方法不返回值,而 removeAttributeNode() 方法返回被删除的属性,以 Attr 对象的形式。

参阅 removeAttributeNode() 方法

浏览器支持

IE Firefox Chrome Safari Opera
         

所有主流浏览器均支持 removeAttribute() 方法。

语法

element.removeAttribute(attributename)

参数

参数 类型 描述
attributename String 必需。您希望移除的属性的名称。

返回值

无返回值。

技术细节

DOM 版本 Core Level 1 Element Object

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024