<!DOCTYPE html>
<html>
<head>
<script src="/statics/demosource/loadxmldoc.js">
</script>
</head>
<body>
<script>
xmlDoc=loadXMLDoc("books_ns.xml");
x=xmlDoc.getElementsByTagNameNS("http://www.w3cschool.cn/children/","title");
document.write(x[0].nodeName);
</script>
</body>
</html>