$(".cblClaimSources").on('click', ':checkbox', function (){
alert('im : '+ $(this).attr('id') + ' and my Parent listener is '+ ?????);
});
insider $(this)
是否有可能知道谁是其听众父母? [$(".cblClaimSources")
]?
答案 0 :(得分:6)
如果使用jQuery 1.7:
$(".cblClaimSources").on('click', ':checkbox', function (e) {
var parentListener = e.delegateTarget;
});