Ueditor 出现 div h 等标签被 p标签取代问题

具体解决方案如下

ueditor.all.js中找到 UE.Editor.defaultOptions 在最后的返回对象中加入: allowDivTransToP: false, disabledTableInTable: true

前端插入html标签的写法

var templates = '\
\
{2}
\
'
; var insertHtml = format(templates, selectedCommoditys); var ue = UE.getEditor('editorEfruitArticleContent'); ue.execCommand("inserthtml", insertHtml, true)

你可能感兴趣的:(Javascript)