父页面带滚动条时,iframe的bootstrap模态框定位问题

来源:互联网 发布:手机签字软件 编辑:程序博客网 时间:2024/06/02 13:12

先获取父页面的滚动条位置

var scrolltop =  window.parent.document.scrollingElement.scrollTop;

设置模态框的上外边距

$("#modelId").css({'margin-top': scrolltop});