背景使用Bootstrap重叠我的模态形式

时间:2017-06-28 07:24:17

标签: javascript jquery css twitter-bootstrap twitter-bootstrap-3

我的模态形式有问题。当我点击登录时,我的表单会显示,但背景重叠。以前是我的JS:

$('#user-login').on('click', function(e) {
        e.preventDefault();
        $('#s-auth-login').modal({
            'backdrop': false, //if true the backdrop will overlap
            'show': true
        });
    });

我强迫背景隐藏起来。但有没有其他方法可以做到这一点?我希望在我的表单模式后面保留不透明颜色的背景。

1 个答案:

答案 0 :(得分:0)

您可以简单地显示引导模式而无需任何其他配置,例如

 $('#s-auth-login').modal('show');

这应该默认处理所有事情。