0

我正在尝试将一个简单的脚本导入 HTML 文档。它不起作用,我不知道我做错了什么。

外部脚本的名称--> (function.js)

window.onload = myFunction;

       function myFunction() 
       {
             document.getElementById("HERE").innerHTML = "message";
       }

HTML 文档的名称--> (attributes.html)

<!DOCTYPEhtml>

    <html>
    <head>

         <title> This is an example of using an external script</title> 
            <script type ="text/javascript" src= "function.js"></script>
    </head>
    <body>

          <h1 id="HERE"> 
          </h1>

    </body>
    </html>
4

2 回答 2

0

我认为在 js 文件运行之前,body on load 事件触发得太早了。尝试至少使用“window.onload”中的“document.body.onload”。尝试使用“document.attachEvent”:

document.attachEvent(document.body, "load", myFunction)
于 2012-08-13T07:16:35.943 回答
0
<html>
<head>

     <title> This is an example of using an external script</title> 
        <script type ="text/javascript" src= "function.js"></script>
</head>
<body>

      <h1 id="HERE"> 
      </h1>

     <script>myFunction() </script>
</body>
</html>
于 2012-08-13T08:10:46.343 回答