我使用 MVC4 默认模板。
我添加了一个脚本:MyScript.js
在/Scripts/MyApp/
一个函数中:
function Testing()
{
alert('test');
}
在 global.asax 中:
bundles.Add(new ScriptBundle("~/bundles/myapp").Include(
"~/Scripts/MyApp/MyScript.js"));
我想调用这个方法/Views/Home/Index.cshml
我尝试了下面的代码但没有成功:
<script type="text/javascript" lang="javascript">
$(document).ready(function () {
Testing();
});
</script>
@Scripts.Render("~/bundles/myapp")
当我查看源代码时,链接就MyScript.js
在那里,我可以导航到它(转到源代码)
但是没有执行Testing()
中的方法 。$(document).ready
更新1
<script type="text/javascript" lang="javascript">
$(document).ready(function () {
alert("test");
});
</script>