Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

IE4 DOM 메서드를 사용하여 문서 속성에 액세스하는 스크립트를 작성하는 방법은 무엇입니까?


이 IE4 DOM(문서 개체 모델)은 Microsoft Internet Explorer 브라우저 버전 4에 도입되었습니다. IE 5 이상 버전에는 대부분의 기본 W3C DOM 기능에 대한 지원이 포함되어 있습니다.

예시

IE4 DOM 메서드를 사용하여 문서 속성에 액세스하려면 다음 코드를 실행해 보십시오. -

<html>
   <head>
      <title> Document Title </title>
      <script>
         <!--
            function myFunc()
            {
               var ret = document.all["heading"];
               alert("Document Heading : " + ret.innerHTML );
               var ret = document.all.tags("P");;
               alert("First Paragraph : " + ret[0].innerHTML);
            }
         //-->
      </script>
   </head>
   <body>
      <h1 id = "heading">This is main title</h1>
      <p>Click the following to see the result:</p>
     
      <form id="form1" name = "FirstForm">
         <input type = "button" value = "Click Me" onclick = "myFunc();" />
         <input type = "button" value = "Cancel">
      </form>
      <form d = "form2" name = "SecondForm">
         <input type="button" value="Don't ClickMe"/>
      </form>
   </body>
</html>