ScrollTop bootbox modal on fadeIn

最后都变了- 提交于 2019-12-21 14:06:16

问题


I use bootbox.js to make modal but when the modal fadeIn and the content is too long, the scrollbar goes at the level of the bottom button. I need the scrollbar stay on top when modal appear


回答1:


I've solved adding .off("shown.bs.modal"); after the bootbox.dialog.

bootbox.dialog({ ... }).off("shown.bs.modal");



回答2:


You can set the scrollTop with jQuery in you callback.

 bootbox.alert("Hello world!", function() {
      $('body').scrollTop(0);
    });


来源:https://stackoverflow.com/questions/27636095/scrolltop-bootbox-modal-on-fadein

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