我需要社区帮助。 我有一张桌子。如果我从tr块悬停,按钮出现在下一个tr。 我需要: 当我用按钮指示阻止 - 没有丢失, 但是当我指示tr-block时按钮丢失并打开这个tr的块。 请帮帮我)
$('.table-finance').on('mouseenter', 'td', function(e) {
if (e.target.tagName == 'TD') {
console.log('enter', 'content=', $(this).text(), 'target=',e.target);
$(this).parent().find('.more-btn').show();
e.stopPropagation();
}
});
$('.table-finance').on('mouseleave', 'td', function(e) {
if ((!$(e.target).hasClass('.btn-more')) || (e.targer.tagName != 'BUTTON')) {
console.log('leave', 'content=', $(this).find('td').text(), 'target=',e.target, 'event=', e);
$(this).parent().find('.more-btn').hide();
e.stopPropagation();
}
});