var currentDialog = CKEDITOR.dialog.getCurrent();
currentDialog._.editor.insertHtml("<customTag myAttr='var'></customTag>");
抛出错误,TypeError: Cannot read property 'isBlock' of undefined
如果我尝试.insertHtml("<span>hello</span>")
它就可以了。
如何更改 ckeditor 以允许我通过指定我自己的自定义 html 标签.insertHtml()
?我很想把它改成类似<span class='custom'...
或类似的东西,但我不得不处理遗留的 CMS 文章。使用最新的ckeditor。谢谢。