CKEditor链接输入无法在模态下工作

时间:2016-12-13 12:50:35

标签: jquery html modal-dialog ckeditor djangocms-text-ckeditor

我有一个项目,其中我使用带有表单和ckeditor的模态,并且链接输入不起作用。

这是一个重现这个问题的小提琴:

http://jsfiddle.net/8t882a2s/3/

这个例子的代码。

HTML:

        <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
            <div class="modal-dialog">
                <div class="modal-content">
                    <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
                        <h4 class="modal-title" contenteditable="true" id="myModalLabel">Modal title</h4>
                    </div>
                    <div id="bodyModal" contenteditable="true" class="modal-body">
                        ...
                    </div>
                    <div class="modal-footer">
                        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                        <button type="button" class="btn btn-primary">Save changes</button>
                    </div>
                </div>
            </div>
        </div>

 <button type="button" class="btn btn-default navbar-btn  margin-right-button-nav" data-toggle="modal" data-target="#myModal"><span class="glyphicon glyphicon-new-window"></span> Edit Modal</button>

JS:

CKEDITOR.disableAutoInline = true;

$(document).ready(function() {
    $('#myModal').on('shown.bs.modal', function () {
        CKEDITOR.inline('myModalLabel');
        CKEDITOR.inline('bodyModal');
    })    
});

这不是我的代码,但错误是一样的。如果单击模态然后尝试添加链接,则无法在输入字段中写入URL。

谢谢:)

3 个答案:

答案 0 :(得分:4)

互联网上的大量答案提出了多种解决方法, 对于我来说,这适用于一个bootstrap 4项目:

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

如果你在bootstrap 3上运行,那么覆盖$.fn.modal.Constructor.prototype.enforceFocus insdead。

答案 1 :(得分:1)

是的!对我来说,data-focus =“ false”解决了所有问题

答案 2 :(得分:0)

要解决此问题,就可以执行以下操作:

  1. 在您的body标签上添加自定义CSS规则

    body { --ck-z-default: 100; --ck-z-modal: calc( var(--ck-z-default) + 999 ); }

  2. 将模式选项焦点值设置为false

    • 如果您使用的是javascript启动模式,则应按以下步骤操作:

    $( '#basicModal' ).modal( { focus: false } );

    • 如果您正在使用数据属性启动模式,则应具有如下形式 <div class="modal fade " data-focus="false" id="basicModal">