中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

XML DOM removeAttribute() 方法


Element 對(duì)象參考手冊(cè) Element 對(duì)象

定義和用法

removeAttribute() 方法刪除指定的屬性。

如果屬性的默認(rèn)值是在 DTD 中定義,那么新屬性出現(xiàn)時(shí)會(huì)帶有該默認(rèn)值。

語法

elementNode.removeAttribute(name)
參數(shù) 描述
name 必需。規(guī)定要?jiǎng)h除的屬性。

實(shí)例

實(shí)例

xmlDoc=loadXMLDoc("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'));

運(yùn)行代碼 ?

Element 對(duì)象參考手冊(cè) Element 對(duì)象其他擴(kuò)展