Bootstrap tooltip container=“body” scroll issue

北城以北 提交于 2021-01-28 05:41:18

问题


I used bootstrap tooltip inside of a dropdown menu. I got that dropdown inside hide tooltip issue.

So I solve that with container="body".

Now I have another issue. That issue is If scroll with hover in tooltip selector element then the tooltip content go to the top.

Refer to the below screenshot.


回答1:


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');


来源:https://stackoverflow.com/questions/65686636/bootstrap-tooltip-container-body-scroll-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!