jquery 1.9.0 live功能?

前端之家收集整理的这篇文章主要介绍了jquery 1.9.0 live功能?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jquery 1.9.0中没有live()函数,但是jquery.unobtrusive.ajax.js已经使用了这个函数.

我应该使用较旧版本的jquery还是另一种方式?

解决方法

折旧为1.7,并从1.9起移除.使用on()代替.

http://api.jquery.com/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版本.

原文链接:https://www.f2er.com/jquery/179641.html

猜你在找的jQuery相关文章