原文:取代Ajax.BeginForm的ajax使用方法 一.前提概要 Asp.net core中已经取消了Ajax.BeginForm,也不会计划出ajax tag helper,所以得利用插件jquery-ajax-unobtrusive,在form中加入相关data-*属性 二.参考资料 https://github.com/aspnet/Mvc/issues/2015 http://bradwilson.typepad.com/blog/2010/10/mvc3-unobtrusive-…
1.确定unobtrusive-ajax已经引用,VS2012带,2013不带 2.注意jq和unobtrusive-ajax引用顺序问题,确保jq在前 3.注意JQ和unobtrusive-ajax版本问题 1.8以上的JQ要去nuget上下载较新的unobtrusive-ajax,1.8以下的用VS2012自带的即可,2013不带, 4.如果控制台提示TypeError: $(...).live is not a function 说明JQ版本过低,JQ1.9更新了很多东西,其中live就被…