亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

XML DOM removeAttributeNS() 方法

定義和用法

removeAttributeNS() 方法刪除由命名空間和名稱指定的屬性。

語法:

elementNode.removeAttributeNS(ns,name)
參數(shù) 描述
ns 必需。規(guī)定要?jiǎng)h除的屬性的名字空間。
name 必需。規(guī)定要?jiǎng)h除的屬性的名稱。

實(shí)例

在所有的例子中,我們將使用 XML 文件 books_ns.xml,以及 JavaScript 函數(shù) loadXMLDoc()。

下面的代碼片段從 "books_ns.xml" 中的第一個(gè) <title> 元素刪除 "lang" 屬性:

xmlDoc=loadXMLDoc("books_ns.xml");

x=xmlDoc.getElementsByTagName("title")[0];
ns="http://chabaoo.cn/children/";

document.write("Attribute Found: ");
document.write(x.hasAttributeNS(ns,"lang"));

x.removeAttributeNS(ns,"lang");

document.write("<br />Attribute Found: ");
document.write(x.hasAttributeNS(ns,"lang"));

輸出:

Attribute Found: true
Attribute Found: false