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

low*_*key 41 javascript jquery

我在jquery文档中看到live()已被弃用.有直接替换功能吗?

Dar*_*JDG 107

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

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

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


min*_*dia 8

$('rootselector').on('click', 'selector', function(){
});
Run Code Online (Sandbox Code Playgroud)

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