根据tutorial here使用bootstrap3
对话框。效果很好。现在想要制作可见的背景滚动和滚动应该在对话框出现时工作。怎么做?
$( ".target" ).click(function() {
BootstrapDialog.show({
title: 'Default Title',
message: $(this).attr("article")
});
});
答案 0 :(得分:1)
试试这个
.modal-open {
overflow: auto !important;
}