//设置fckeditor为只读
function FCKeditor_OnComplete(editorInstance)
{
editorInstance.EditorDocument.body.disabled = true;
editorInstance.EditorWindow.parent.document.getElementById('xExpanded').style.display = 'none';
editorInstance.EditorWindow.parent.document.getElementById('xCollapsed').style.display = 'none';
editorInstance.EditorWindow.blur();
}
本文来自优快云博客,转载请标明出处:http://blog.youkuaiyun.com/hailang43/archive/2009/06/20/4285847.aspx
/*设置FCKEDITOR为只读 */
function setFCKeditorReadOnly( editor ){ try{ editor.EditorDocument.body.contentEditable = false; editor.EditMode=FCK_EDITMODE_SOURCE; editor.ToolbarSet.RefreshModeState(); editor.EditMode=FCK_EDITMODE_WYSIWYG; editor.ToolbarSet.RefreshModeState(); editor.EditorWindow.parent.document.getElementById('xExpanded').style.display = 'none'; editor.EditorWindow.parent.document.getElementById('xCollapsed').style.display = 'none'; editor.EditorWindow.blur(); } catch(e){ } }