与谷歌地图的Bootstrap模态堆栈

时间:2017-05-31 14:06:33

标签: google-maps

我在Bootstrap模式中显示谷歌地图时遇到问题。见下文

you can see in this pict

有谁知道这是为什么?

1 个答案:

答案 0 :(得分:0)

我不知道这有什么不对,但我试着解决你的问题。 这是为了替换模态,您可以使用此代码再次替换地图。

 $.fn.modal.Constructor.prototype.enforceFocus = function () {
    modal_this = this
    $(document).on('focusin.modal', function (e) {
        if (modal_this.$element[0] !== e.target && !modal_this.$element.has(e.target).length
        // add whatever conditions you need here:
        &&
        !$(e.target.parentNode).hasClass('cke_dialog_ui_input_select') && !$(e.target.parentNode).hasClass('cke_dialog_ui_input_text')) {
            modal_this.$element.focus()
        }
    });
};