小码哥的IT人生

XML DOM removeAttribute() 方法

XML基础 2023-08-13 15:07:37小码哥的IT人生shichen

XML DOM removeAttribute() 方法

定义和用法

removeAttribute() 方法删除指定的属性。如果文档类型声明 (DTD) 为指定的属性设置了默认值,那么接下来调用 getAttribute() 方法将返回那个默认值。

删除不存在的属性或没有设置但具有默认值属性的操作将被忽略。

语法:

elementNode.removeAttribute(name)
参数 描述
name 必需。规定要删除的属性的名称。

实例

在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()

下面的代码片段删除 "books.xml" 中所有 <book> 元素的 "category" 属性:

xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');
for (i=0;i<x.length;i++)
{
x[i].removeAttribute('category'));
}

TIY

完整实例【removeAttributes() - 删除属性】:

<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/books.xml");
x=xmlDoc.getElementsByTagName('book');
document.write(x[0].getAttribute('category'));
document.write("<br />");
x[0].removeAttribute('category');
document.write(x[0].getAttribute('category'));
</script>
</body>
</html>

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

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

苏公网安备 32030202000762号

© 2021-2024