Bootstrap modal: background jumps to top on toggle

后端 未结 30 3415
栀梦
栀梦 2020-11-29 19:48

I have a problem, with a modal. I have a button on a page, that toggles the modal. When the modal shows up, the page jumps to top.

I have done everything I could to

30条回答
  •  醉话见心
    2020-11-29 20:10

    I got the same issue and none of answers helped me. Found a workaround which looks stupid but it works at least in my case.

    I found that page is scrolling to top only once and after that next opened modals works as expected. Than I found that hiding of any element in the DOM initiates the same strange scroll. So I just creating a dummy div after page load than hidding and removing it and this solved the issue.

    var $dummy= $("
    "); $("body").append($dummy); $dummy.hide().remove();

提交回复
热议问题