我想在我的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仍然出现。有什么想法吗?