如何编写一个脚本,使用 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>

更新日期:2020 年 6 月 23 日

104 次浏览

开启您的职业生涯

完成课程并获得认证

开始
广告