0

我一直在研究一个使用 CuteEditor 控件的现有项目。我发现为了启用 iframe 标签,我需要添加属性EnableStripIframeTags并将其设置为 false。但是,CuteEditor 控件出现在很多页面中。

是否可以EnableStripIframeTags从 CuteEditor 的配置文件中进行设置?

4

1 回答 1

0

我不认为那是可能的。我的解决方案是创建一个方法来设置属性并从每个页面调用它。

通常还有几个其他属性需要更改,也可以添加到该方法中。

public void initialiseEditor(CuteEditor.Editor editor) {

        editor.EnableStripIframeTags = true;
        editor.EnableStripScriptTags = true;
        editor.EnableStripStyleTagsCodeInjection = true;

} 
于 2013-05-24T19:29:42.020 回答