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