DOM NodeList對象length
屬性給出節點列表中的節點數。
語法
以下是使用length
屬性的語法。
nodelistObject.length
示例
檔:node.xml 的內容如下 -
<Company>
<Employee category = "Technical" id = "firstelement">
<FirstName>Susen</FirstName>
<LastName>Su</LastName>
<ContactNo>1584567890</ContactNo>
<Email>susen@xuhuhu.com</Email>
</Employee>
<Employee category = "Non-Technical">
<FirstName>Max</FirstName>
<LastName>Su</LastName>
<ContactNo>1334667898</ContactNo>
<Email>maxsu@xuhuhu.com</Email>
</Employee>
<Employee category = "Management">
<FirstName>Min</FirstName>
<LastName>Su</LastName>
<ContactNo>1364562350</ContactNo>
<Email>minsu@xuhuhu.com</Email>
</Employee>
</Company>
以下示例將XML文檔(node.xml)解析為XML DOM對象,並使用length
屬性提取長度資訊。
檔:lenght.html -
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<head></head>
<body>
<script>
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","/node_.xml",false);
xmlhttp.send();
xmlDoc = xmlhttp.responseXML;
y = xmlDoc.getElementsByTagName('FirstName');
document.write("Length of node list: " + y.length);
</script>
</body>
</html>
執行上面示例代碼,得到以下結果 -
上一篇:
DOM NodeList對象
下一篇:
DOM NamedNodeMap對象