我需要实现类似这样的东西
$(document).on('click','#test .foo',function(){
alert('Good');
})
但我想知道是否有使用.find()
的方法,就像这样
var $test = $('#test');
$(document).on('click',$test.find('.foo'),function(){
alert('Good');
})
我正在使用$(document).on('click'
因为'.foo'是动态的
由于