无法从外部文件引用JavaScript

时间:2017-01-21 20:21:35

标签: javascript html jsp

我是Spring和JavaScript的新手。

我创建了一个JSP文件enter image description here

在我的first.js中,我有以下方法

function firstmethod()
{
    window.alert("Enter a New Number");
    return true;
}

但javascript方法没有被执行。我无法弄清楚原因。请建议

浏览器控制台错误日志

enter image description here

控制台错误日志

enter image description here

1 个答案:

答案 0 :(得分:0)

我首先要检查文件是否正确显示在您的网络浏览器中:

右键点击浏览器窗口,选择"查看页面来源(如果您正在使用Chrome),"导航到标记,找到您的javascript文件的链接,然后单击它。你应该看到它的内容显示在你的窗口中。

如果代码看起来正确,则可能会出错。浏览器开发人员工具(右键单击浏览器窗口,选择"检查元素")有时会在"控制台"中显示这些错误。标签

代码似乎很好。这是一个片段:



function firstmethod()
{
    alert("Enter a New Number");
    return true;
}

<form name="firstform" method="post" action="first" onsubmit="return firstmethod()">
  <input type="submit" name="button" value="Click" />
</form>
&#13;
&#13;
&#13;