页面上有dijit.Editor
如果我输入“example”并应用bold
功能,它将显示为“示例”。我从编辑那里得到的文字是<b>example</br>
但是,如果我想将粗体文本添加到编辑器并将内容设置为<b>example</br>
,我可以在编辑器字段中看到“示例”,而不是示例。
我试图通过
new dijit.Editor({
content: this.text
});
和
editor.execCommand("inserthtml", this.text);
有没有办法让dijit.Editor
解析所有这些标签到文字功能?