无法在启动箱内集成ckeditor

时间:2017-08-05 09:58:31

标签: javascript jquery ckeditor

我想在我的bootbox中生成自定义textarea。这是我的代码

function showQuotationBox() {
    bootbox.prompt({
        title: "This is a prompt with a textarea!",
        className: 'ckeditor',
        inputType: 'textarea',
        callback: function (result) {
            console.log(result);
        }
    });
    CKEDITOR.replace('textarea');
}

但我收到错误

  

未捕获的TypeError:无法读取属性' getEditor'未定义的

普通textarea仍然出现。有什么想法吗?

0 个答案:

没有答案