我遇到了同样的问题,我希望在 div 中包含 sweetalert2 (不是 sweetalert toast),因为我希望除它之外的另一个 div 在弹出 sweetalert 时可以滚动。我已经尝试过上面的代码,但它仍然无法正常工作。
var id = document.getElementById('mydiv');
swal({
title: "question",
target: id,
showConfirmButton: false,
showCloseButton: true,
allowOutsideClick: false,
allowEscapeKey : false,
customClass: "swal-height"
});
我也有固定的CSS定位
#mydiv{
overflow: hidden;
height: calc(100% - 300px) !important;
padding-bottom: 70px;
position: relative !important;
}
#mydiv .swal-height {
position:absolute !important;
height: 720px !important;
width: 780px !important;
margin-left: 1100px !important;
margin-top: 280px !important;
}
你能建议我在这里做错了什么吗?
这是 JSFiddle,它与我正在构建的类似: https: //jsfiddle.net/0pt2vr87/7/
感谢您的帮助。
隔江千里
相关分类