我有一个文件-“Site.js”,方法如下:
function Init() {
$(document).ready(function() {
//some init actions here
});
}
function jQuery.fn.DivToggle(div) {
$(div).toggle('fast');
//some other animation code here
}
在我的 Index.cshtml 文件中(我使用的是 asp.net mvc),我有这个:
<!DOCTYPE html>
<html>
<head id="Head1" runat="server">
<script src="@Url.Content("~/Scripts/jquery-1.7.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/Site.js")" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
$(function () {
Init();
});
</script>
</body>
</html>
运行项目时出现此错误:“Microsoft JScript 运行时错误:'Init' 未定义”
知道我做错了什么吗?