1

刚刚制作了一个基本程序来解决我的问题的根源,我似乎无法找到为什么这根本不起作用。

HTML

<html lang="en">
    <head>
        <script type="text/javascript" src="carjava.js"></script>
    </head>
<body onload="hi()">
    hi
</body>

</html>

JS

function hi() {
alert("hi");
}

我希望在页面加载时弹出警报但没有任何反应,有什么想法吗?

4

2 回答 2

1

我不能告诉你为什么它没有触发,但这应该可以:

HTML

<html lang="en">
    <head>
        <script type="text/javascript" src="carjava.js"></script>
    </head>
    <body>
        hi
    </body>
</html>

JS

function hi() {
    alert("hi");
}

window.onload = hi;
于 2013-03-18T04:35:52.247 回答
-1

以下代码对我来说工作正常:

<html lang="en">
    <head>
        <script type="text/javascript" src="carjava.js"></script>
        <script type="text/javascript">
          function hi()
          {
             alert('hi');
          }
        </script>
    </head>
<body onload="hi()">
    hi
</body>

</html>

它在 Firefox 和 Chrome 中运行良好。必须是带有 js 文件的东西。

于 2013-03-18T04:45:01.273 回答