我在播放框架上的 html 中包含本地 javascript 文件时遇到问题。路径是正确的,我什至尝试将 javascript 文件包含在同一目录中。但是,从 Web 导入(我正在使用的主要库)工作得很好。
@(execId: String)
<html>
<head>
<title>Timeline</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script>
<script type="text/javascript"
src="http://code.jquery.com/jquery-latest.js"></script>
<script type = "text/javascript" src = "../../public/javascripts/profilesJS/stack.js"> </script>
</head>
<body>
<input id="profiles" type="button" value="Profiles" />
<script type="text/javascript">
alert(tester());
</script>
</body>
</html>
javascript文件看起来像这样
function tester(){
return "test";
}
我得到的错误是:
tester is not defined
在警报线上