CKEditor使用手冊

2022-09-19 19:42:11 字數 950 閱讀 1714

在使用ckeditor過程中遇到了一些問題,現把它整理成手冊,以便隨時翻閱.

在頁面中引入ckeditor核心檔案ckeditor.js

需要新建例項,假若ckeditor例項已存在

if (ckeditor.instances['textarea_name'])

ckeditor.replace('textarea_name');

function

loadeditor(id)

ckeditor.replace(id);

}var instance = ckeditor.instances['test']; if (instance)

if(ckeditor.instances[editorname])

delete

ckeditor.instances[editorname];

ckeditor.replace(editorname);

獲取ckeditor的值

var editor=ckeditor.replace( 'editor1' );

editor.document.getbody().gettext(); //取得純文字

editor.document.getbody().gethtml(); //取得html文字

ckeditor.instances.content.getdata()=="")

content是textarea的name

設定ckeditor的值

ckeditor.instances.content.setdata("cccto");

var editor = ckeditor.replace("content");

editor.setdata("cccto");

插入內容

ckeditor.instances.message.inserthtml('')

ckeditor 使用手冊

在使用ckeditor過程中遇到了一些問題,現把它整理成手冊,以便隨時翻閱.在頁面中引入ckeditor核心檔案ckeditor.js 需要新建例項,假若ckeditor例項已存在 if ckeditor.instances textarea name ckeditor.replace textar...

CVS使用手冊

注意 第一次匯出以後,就不是通過cvs checkout來同步檔案了,而是要進入剛才cvs checkout project name匯出的project name目錄下進行具體檔案的版本同步 新增,修改,刪除 操作。cvs的許可權管理分2種策略 基於系統檔案許可權的系統使用者管理 適合多個在lin...

sed使用手冊

原貼 http blog.chinaunix.net u 23204 showart 305602.html sed使用手冊 原創 在sed語句,正規表示式必須封閉在 中間。如 d,刪除空行。sed位址 在sed位址管理中,預設是對全域性進行操作,同時位址可以分為行位址和模式位址。如1,10d 12...