举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > html中remove HTML DOM removeAttribute() 方法

html中remove HTML DOM removeAttribute() 方法

2023-04-08 09:18

html中remove HTML DOM removeAttribute() 方法

html中remove HTML DOM removeAttribute() 方法

html中remove

HTML DOM removeAttribute() 方法

元素对象参考手册 元素对象

实例

删除头部元素的 style 属性:

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

删除属性前:

Hello World

删除属性后:

Hello World


定义和用法

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

查看类似方法 removeAttributeNode() 。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 removeAttribute() 方法


语法

element.removeAttribute(attributename)

参数s

参数类型 描述
attributenameString必需。规定要删除的属性的名称。

返回值

没有返回值。

技术细节

DOM 版本Core Level 1 Element Object


元素对象参考手册 元素对象

阅读全文
以上是编程学为你收集整理的html中remove HTML DOM removeAttribute() 方法全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部