解决方法
折旧为1.7,并从1.9起移除.使用on()代替.
$("#myButton").on("click",function(){ alert("Clicked"); });
很多很好的信息在这里:
http://www.elijahmanor.com/2012/02/differences-between-jquery-bind-vs-live.html
对于不引人注意的Ajax,您需要在v1.9之前添加一个jQuery版本,其中live()仍然存在.
如果您引用MS CDN,
http://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.unobtrusive-ajax.js
http://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.unobtrusive-ajax.min.js
那么就不会出现这些直接引用的jQuery.只需在您的代码中包含1.8版本,而不是1.9版本.