jquery的live()已被弃用。 我现在用什么?

我在jQuery文档中看到live()已被弃用。 有直接replacefunction吗?

当然:

http://api.jquery.com/on/

http://api.jquery.com/off/

live()页面显示如何转换为on()

http://api.jquery.com/live/

$(document).on('event', 'selector', function() {}); replace.live()

$('selector').on('event', 'selector', function() {}); replace.delegate()

$('selector').on('event', function() {}); replace.bind()

 $('rootselector').on('click', 'selector', function(){ }); 

取自http://api.jquery.com/on/

你可以看看jQuery的所有被弃用的函数,取决于他们的版本

http://api.jquery.com/category/deprecated/

希望这可以帮助你。