标签: live
我的 JS 文件
$("a#confirm_roommate").live('click',function(){ //code });
但是在 jquery-1.9.1.min.js 中不起作用。它给出了生命不起作用的错误..
有什么不对......?
答案 0 :(得分:2)
来自the docs:
As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live().
它也从1.9
所以你应该使用on()