I made a solution to this problem. That's if the mouse hovers the tooltip selector element then add a script for that element hover in & out trigger event to remove & add body scroll. Example below:
$(document).on({
mouseenter: function () {
$('body').css('overflow-y', 'hidden');
},
mouseleave: function () {
$('body').css('overflow-y', 'scroll')
}
}, 'YOUR_TOOLTIP_SELECTOR');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…