localName 属性返回属性名称的本地部分。
attrObject.localName
下面的代码片段使用 loadXMLDoc() 把 "books_ns.xml" 载入 xmlDoc 中,并返回 "lang" 属性的本地名称:
xmlDoc=loadXMLDoc("books_ns.xml");
x=xmlDoc.getElementsByTagName('title');
for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].localName);
document.write("
");
}
上面的代码将输出:
lang
lang