XML DOM name 屬性—— Attr 對象

2018-08-05 16:32 更新

XML DOM name 屬性


Attr 對象參考手冊 Attr 對象

定義和用法

name 屬性返回屬性的名稱。

語法

attrObject.name


實例

下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,并顯示 category 屬性的名稱和值:

實例

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.getElementsByTagName('book');

for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].name);
document.write(" = ");
document.write(x.item(i).attributes[0].value);
document.write("
");
}

輸出:

category = COOKING
category = CHILDREN
category = WEB
category = WEB

嘗試一下 ?

Attr 對象參考手冊 Attr 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號