Model Objek Dokumen (DOM) IE4 telah diperkenalkan dalam pelayar Microsoft Internet Explorer versi 4. IE 5 dan ke atas menyokong kebanyakan ciri asas W3C DOM.
Untuk mengakses sifat dokumen menggunakan kaedah DOM IE4, cuba jalankan kod berikut -
<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>
Atas ialah kandungan terperinci Bagaimana untuk skrip mengakses sifat dokumen menggunakan kaedah DOM IE4?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!