在模式对话框中,CKEditor图像对话框形式不可单击

时间:2016-03-03 06:04:07

标签: php popup modal-dialog ckeditor

我正在使用bootstrap模式弹出窗口来打开ckeditor。它正在工作,但是当我单击该对话框中的图像图标时,会打开,但不能点击。

1 个答案:

答案 0 :(得分:1)

使用此代码。

<script>
    CKEDITOR.replace('help_ldesc');
    //CKEDITOR.replace('help_ldesc1');

    $.fn.modal.Constructor.prototype.enforceFocus = function() {
        var $modalElement = this.$element;
        $(document).on('focusin.modal',function(e) {
                var $parent = $(e.target.parentNode);
                if ($modalElement[0] !== e.target && !$modalElement.has(e.target).length && $(e.target).parentsUntil('*[role="dialog"]').length === 0) {
                        $modalElement.focus();
                }
        });
};
</script>