CKEditor 作為所見即所得線上內容編輯器(online WYSIWYG HTML editors)。
一般網頁的文字欄位(如textarea)只能處理純文字,如果使用者需要使用豐富格式(Rich Text)的編輯功能,類似Word樣式,網頁上使用的文字編輯器 javascript套件工具就是必要的了,在此介紹目前功能已經很完善的CKEditor。
CKEditor是一款功能完整擴充性強卻簡單易用的Web介面文字編輯器,可以說是只要有Web介面文字編輯器的需求,
CKEditor具有以下幾個特色
一、容易使用:
二、支援多語系:
三、產出的HTML非常乾淨:
四、可客製化:
五、外掛豐富:
放的位置在 PUBLIC 資料夾的
CKEDITOR.editorConfig = function( config ) {
config.language = 'zh-tw';
config.height = 500;
config.toolbar = 'Basic';
config.filebrowserBrowseUrl = '/public/ckfinder/ckfinder.html';
config.filebrowserUploadUrl = '/public/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files';
config.filebrowserImageBrowseUrl = '/public/ckfinder/ckfinder.html?Type=Images';
config.filebrowserImageUploadUrl = '/public/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images';
};
================
使用本地檔案無瀏覽伺服器的檔案夾