3

我有一个 JQuery 函数FetchFunctions(),我需要在加载页面时运行它。我不确定如何使用模板在 MVC 中执行此操作。我在此页面上没有部分。将其添加到 _layout 页面没有意义。

4

2 回答 2

7

在您的页面内只需添加一个脚本标签

somepage.cshtml

<script>
 window.onload = function(){
  //script goes here
 };
 //or if you prefer jQuery
 $(function(){
  //script goes here
 });
</script>
于 2013-05-14T18:45:47.400 回答
2

只需在您的 HTML 中包含以下内容:

<script>
    $(function () { FetchFunctions() });
</script>
于 2013-05-14T19:11:47.823 回答