监听jquery插入的新标签

$('.replay-more').on('click','.list',function () {
var cid = reply.attr('cid');
var currentPage = $(this).text();
$.ajax({
url:'/blog/getcomment',
type: 'post',
dataType: 'json',
data: {
'cid':cid,
'currentPage':currentPage
},
success:function (data) {
list(data);
}
})
})