我正在尝试在表单中使用 Jodit,但是当我保存表单时,它只保存字符而不是数据库中的所有 HTML。我正在使用 Quill,我找到了解决方案。但是因为我对使用 Quill 的图像有困难,所以我正在尝试 Jodit。
我正在使用版本3.2.44
。
<textarea id="editor" name="text">${text}</textarea>
var editor = new Jodit("#editor", {
"spellcheck": false,
"toolbarSticky": false,
"showWordsCounter": false,
"buttons": "|,bold,underline,italic,|,superscript,subscript,|,ul,ol,|,outdent,indent,|,font,fontsize,brush,paragraph,|,image,table,link,|,align,undo,redo,\n,cut,hr,eraser,|,symbol,selectall,print"
});
我想知道是否有人可以给我一些例子或提示。谢谢。