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

来源:9-7 节点属性

沉迷学习不能自拔_

2017-01-15 20:22

为什么节点名会显示为大写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>

写回答 关注

2回答

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

    元素节点的 nodeName 是标签名称

    属性节点的 nodeName 是属性名称

    文本节点的 nodeName 永远是 #text

    文档节点的 nodeName 永远是

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



    沉迷学习不能...

    非常感谢!

    2017-01-23 18:35:44

    共 1 条回复 >

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

    你好,贴代码上来看看

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题