FCKEDITOR 相關函式介紹

2022-10-06 18:15:13 字數 1592 閱讀 9817

獲取fck的例項

fckeditorapi是fckeditor載入後註冊的乙個全域性物件,利用它我們就可以完成對編輯器的各種操作。

在當前頁獲得 fck 編輯器例項:

var editor = fckeditorapi.getinstance('instancename');

從 fck 編輯器的彈出視窗中獲得 fck 編輯器例項:

var editor = window.parent.innerdialogloaded().fck;

從 框架頁面的子框架中獲得其它子框架的 fck 編輯器例項:

var editor = window.framename.fckeditorapi.getinstance('instancename')www.cppcns.com;

從頁面彈出 視窗中獲得父視窗的 fck 編輯器例項:

var editor = opener.fckeditorapi.getinstance('instancename');

fck獲取焦點

獲 取焦點是否在fck中:

oeditor.hasfocus

fck獲取焦點:

oeditor.focus();// 獲取焦點

獲取和設定fck的內容

獲得 fck 編輯器的內容:

oeditor.getxhtml(formatted); // formatted 為:true|false,表示是否按html格式取出。

設定 fck 編輯器的內容:

oeditor.sethtml("content", false); // 第二個引數為:true|false,是否以所見即所得方式設定其內容。

插入內容到 fck 編輯器:

oeditor.inserthtml("html"); // "html"為html文字

檢查 fck 編輯器內容是否發生變化:

oeditor.isdirty();

複製** **如下:

// 獲取編輯器中html內容

function geteditorhtmlcontents(editorname)

// 獲取編輯器中文字內容

function geteditortextcontents(editorname)

// 設定編輯器中內容

function seteditorcontents(editorname, contentstr)

fck的事件處理

fck 定義有oncomplete,onblur和onfocus等事件,這樣就可以使用事件的處理函式完成相應的處理。

fck新增事件處理 函式的方法是:fckinstance.events.attachevent( eventname, function)

** //fckeditor 載入完成後做處理的方法

function fckeditor_oncomplete( editorinstance )

function fckeditor_onblur( editorinstance )

function fckeditor_onfocus( editorinstance )

本文位址:

php檔案相關函式介紹

1 獲取路徑的檔名 string basename string path string suffix 2 獲取路徑的目錄 string dirname string path array pathinfo string path 可以得到目錄資訊 檔名和副檔名 4 確定檔案大小 int files...

HQL join fetch相關介紹

join用法 主要有inner join 及 outer join 最常用的 預設是inner select 要選擇的字段 from 主要資料表 inner join 的主要精神就是 exclusive 叫它做排他性吧 就是講 join 規則不相符的資料就會被排除掉,譬如講在 product 中有一...

Camera相關介紹

qxga 2048 x 1536 又稱300萬畫素 uxga 1600x 1200 又稱200萬畫素 sxga 1280 x1024 又稱130萬畫素 xga 1024 x768 又稱80萬畫素 svga 800 x600 又稱50萬畫素 vga 640x480 又稱30萬畫素 35萬是指648x4...