欢迎您 本站地址:
复制网址
手机查看
切换背景
源代码:
html编辑器
颜色值转换
点击运行
<script> // 获取第一个子节点名及值 function get_firstchild(n) { x=n.firstChild; while (x.nodeType!=1) { x=x.nextSibling; } return x; } xmlDoc=loadXMLDoc("books.xml"); x=get_firstchild(xmlDoc); document.write("Nodename: " + x.nodeName); document.write(" nodetype: " + x.nodeType + "<br>"); // 获取根元素的第一个子节点 y=get_firstchild(xmlDoc.documentElement); document.write("Nodename: " + y.nodeName); document.write(" nodetype: " + y.nodeType); </script>
运行结果:
小库提示
扫描下方二维码,访问手机版。
打赏
关闭