JS 아이 노드 찾기

1399 단어 js
예전 에 JS 쪽 의 책 을 읽 었 는데 지금 은 사용 되 었 습 니 다. 책 을 아무리 많이 읽 어도 잊 지 않 아 도 됩 니 다. 그래서 항상 당신 이 배 운 지식 으로 온고지신 합 니 다.
         
        
<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>

<title>###</title>

<meta keywords="    "/>

<meta description="JS      "/>

<script type="text/javascript">

     

     function getContent()

     {

      var x=document.getElementById("content");

      for(var i=0;i<x.childNodes.length;i++)

      {

          if((content=x.childNodes[i].innerHTML)=="  ")

          {

            var next=x.childNodes[i].nextSibling.nextSibling.textContent;

            alert(next);

          }

      }

       

     }

     window.onload=getContent;

</script>

</head>

<body>

<div id="content">

<h3>  </h3>

<div id="1">

  <p >this is the first paragragh</p>

</div>

<h3>  </h3>

<div id="2">

  <p>this is the second paragragh</p>

</div>

<h3>  </h3>

<div id="3">

  <p>this is the third paragragh</p>

</div>

</div>

</body>

</html>


            노력 과 실천, 견지, 파 이 팅 이 필요 하 다.

좋은 웹페이지 즐겨찾기