问答详情
源自:9-7 节点属性

为什么节点名会显示为大写LI 不是小写吗

为什么节点名会显示为大写LI 不是小写吗

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>节点属性</title>
</head>
<body>
  <ul>
     <li>javascript</li>
     <li>HTML/CSS</li>
     <li>jQuery</li>    
  </ul>
  <script type="text/javascript">
     var aa=document.getElementsByTagName("li");
    for(var i=0;i<aa.length;i++)
    {
  
    document.write(aa[i].nodeName+"<br/>");
    document.write(aa[i].nodeValue+"<br/>");
    document.write(aa[i].nodeType+"<br/>");
    }
  </script>
</body>
</html>

提问者:沉迷学习不能自拔_ 2017-01-15 20:22

个回答

  • SurpriseH
    2017-01-20 18:23:51
    已采纳

    元素节点的 nodeName 是标签名称

    属性节点的 nodeName 是属性名称

    文本节点的 nodeName 永远是 #text

    文档节点的 nodeName 永远是

    nodeName 所包含的 XML 元素的标签名称永远是大写的



  • MadMarical
    2017-01-17 14:14:30

    你好,贴代码上来看看