jQuery1.9.live()不是函数我最近将jQuery从1.8更新到2.1。我突然发现.live()停止工作。我知道错误TypeError: $(...).live is not a function.我能用什么方法来代替.live()?
3 回答
米琪卡哇伊
TA贡献1998条经验 获得超6个赞
jQuery.fn.extend({
live: function (event, callback) {
if (this.selector) {
jQuery(document).on(event, this.selector, callback);
}
return this;
}});添加回答
举报
0/150
提交
取消
