js DOM nodeType

js 里面的节点的nodeType,就是判断节点的类型
nodeType=1 的时候 是元素节点
nodeType=3 的时候 是文本节点

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0   Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
   <style>
   </style>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>无标题文档</title>
     <script type="text/javascript">
      window.onload=function ()
      {
       alert(document.body.childNodes[1].nodeType);
       alert(document.body.childNodes[2].nodeType);
      }
     </script>
   </head>

       <body>
       aaafsa
      <span>fff</span>
      </body>
    </html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容