0

dijit.Editor在页面上有一个。
如果我输入“示例”并应用bold功能,它将看起来像“示例”。我从编辑器得到的文本是<b>example</br>.
但是,如果我想将粗体文本放入编辑器并将内容设置为<b>example</br>,我可以在编辑器字段中看到 'example',而不是example
我试图通过设置文本

new dijit.Editor({
    content: this.text
});

editor.execCommand("inserthtml", this.text);

有没有办法将dijit.Editor所有这些标签解析为文本特征?

4

1 回答 1

0

问题恰好和https://stackoverflow.com/a/16983545/1711975一样

谢谢大家的帮助!

于 2013-06-07T13:22:18.143 回答