且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

MVC5、AjaxHelper 和正确的脚本加载顺序

更新时间:2023-12-04 18:20:47

AjaxHelper

NuGet 包 Microsoft jQuery Unobtrusive Ajax 3.1.2

> Install-Package Microsoft.jQuery.Unobtrusive.Ajax -Version 3.1.2

现在包含脚本

<script src="~/jquery-1.11.0.js"></script>
<script src="~/jquery.unobtrusive-ajax.js"></script>

继续获取最新版本(如果有).我指定了 v3.1.2 来证明 AjaxHelper 在特定时间至少适用于这个特定版本.

Go ahead and get the latest version if available. I specified v3.1.2 to demonstrate that the AjaxHelper worked for at least this particular version at a particular time.