Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะเขียนสคริปต์เพื่อเข้าถึงคุณสมบัติของเอกสารโดยใช้วิธี IE4 DOM ได้อย่างไร


รูปแบบวัตถุเอกสาร IE4 (DOM) นี้เปิดตัวในเวอร์ชัน 4 ของเบราว์เซอร์ Internet Explorer ของ Microsoft 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>