出现对话框时可见的背景滚动

时间:2016-02-12 06:35:33

标签: jquery css twitter-bootstrap css3

根据tutorial here使用bootstrap3对话框。效果很好。现在想要制作可见的背景滚动和滚动应该在对话框出现时工作。怎么做?

$( ".target" ).click(function() {
    BootstrapDialog.show({                
        title: 'Default Title',
        message: $(this).attr("article")              
    });
});

1 个答案:

答案 0 :(得分:1)

试试这个

.modal-open {
    overflow: auto !important;
}