CKEDITOR内联编辑器工具栏上的文本选择

时间:2013-03-20 08:37:03

标签: ckeditor inline onselect

CKEditor 4可用于“内联编辑器”模式,只要相关文本区域获得焦点,它就会显示工具栏。我需要隐藏工具栏,只有当用户选择一些文本时才显示它,我该怎么做?

我也想知道如何重新定位工具栏。

1 个答案:

答案 0 :(得分:3)

你可以尝试这样的事情:

$('#showEditor').mouseup(function () {
    if(getSelectedText()){
    //show inline editor instance

CKEDITOR.disableAutoInline = true;
var editor = CKEDITOR.inline( document.getElementById( 'showEditor' ) );

    }
});

function getSelectedText() {
    var t = '';
    if (window.getSelection) {
        t = window.getSelection();
    } else if (document.getSelection) {
        t = document.getSelection();
    } else if (document.selection) {
        t = document.selection.createRange().text;
    }
    return t;
}