Javascript文件无法加载

时间:2016-02-08 19:00:03

标签: javascript loading

我有一个简单的脚本,当包含在html主体中时可以工作。但是,从相对路径运行时,包括

<script type="text/javascript" src="simple.js"></script>

在html文件的标题或底部,脚本将不再运行。

有人能说出我错过了什么吗?

谢谢。

脚本simple.js:

<script>
        function firstFunction(){

            var a = document.getElementById("firstInput").value;

            if(! a){
                alert("minimum input of 1 char required");
            }else{
                document.getElementById("firstOutput").innerHTML=a;
            }


        }

        function secondFunction(){
            var b = document.getElementById("secondInput").value;

            if(!b){
                alert("minimum input of 1 char required");
            }


            document.getElementById("secondOutput").innerHTML=b;
            //document.getElementById("secondOutput").innerHTML = "updated!";
        }

1 个答案:

答案 0 :(得分:3)

如果您将javascript包含在html文件中,则只需要<script>标记。

在.js文件中,这是一个语法错误。只需编写没有标记的javascript代码!

文件simple.js:

function firstFunction(){

        var a = document.getElementById("firstInput").value;

        if(!a){
            alert("minimum input of 1 char required");
        }else{
            document.getElementById("firstOutput").innerHTML=a;
        }


    }

    function secondFunction(){
        var b = document.getElementById("secondInput").value;

        if(!b){
            alert("minimum input of 1 char required");
        }


        document.getElementById("secondOutput").innerHTML=b;
        //document.getElementById("secondOutput").innerHTML = "updated!";
    }

由于您的文件现在正确,请确保将脚本放在关闭正文标记

之前
<script type="text/javascript" src="simple.js"></script>
</body>

以便在脚本运行时找到元素。