我有一个JQuery函数FetchFunctions()
,我需要在加载页面时运行它。我不确定如何使用模板在MVC中执行此操作。我在这个页面上没有章节。将它添加到_layout页面是没有意义的。
答案 0 :(得分:5)
在页面内部添加脚本标记
somepage.cshtml
<script>
window.onload = function(){
//script goes here
};
//or if you prefer jQuery
$(function(){
//script goes here
});
</script>
答案 1 :(得分:1)
只需在HTML中包含以下内容:
<script>
$(function () { FetchFunctions() });
</script>