如何在表格中使用Jodit

时间:2019-04-26 19:20:36

标签: javascript jodit

我试图在表单中使用Jodit,但是当我保存表单时,它仅保存字符,而不是数据库中的所有HTML。我使用了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"
});

我想知道是否有人可以给我一些例子或提示。谢谢。

1 个答案:

答案 0 :(得分:0)

对不起,我错了。 Jodit可以完美地在表单中工作,并将表单保存到textarea中,数据库已正确更新。我忘了我使用了清理功能,它删除了所有标签!我只需要调整消毒。