zoukankan      html  css  js  c++  java
  • FCKeditor的全局API

    FCKeditor offers a complete JavaScript API ,FCKedi

    FCKeditor offers a complete JavaScript API so you can interact with it once the editor is loaded and running.


    Retrieving an editor instanceOnce loaded, the editor registers a global object called FCKeditorAPI. This object offers the entry point to interact with any editor instance placed in a page (you can have more than one). When placing the editor in the page, you give it an "instance name". So, to retrieve it, you must simply call the FCKeditorAPI.GetInstance method. For example:

    var oEditor = FCKeditorAPI.GetInstance('InstanceName') ;


    The returned object
    The GetInstance method returns the main FCKeditor object that gives the necessary bridge to interact with it. This is a list of properties and methods of this object:


    * Description = string
    * EditMode = Integer
    * Name = string
    * Status = Integer
    * function AttachToOnSelectionChange(functionPointer)
    * function CleanAndPaste(html)
    * function CreateElement(tag)
    * function CreateLink(url)
    * function ExecOnSelectionChange() //Fires OnSelectionChange event in event manager
    * function ExecOnSelectionChangeTimer()
    * function ExecuteNamedCommand(commandName, commandParameter)
    * function ExecuteRedirectedNamedCommand(commandName, commandParameter)
    * function Focus()
    * function GetHTML(format) // doesnt work. Use GetXHTML instead.
    * function GetNamedCommandState(commandName)
    * function GetNamedCommandValue(commandName)
    * function GetXHTML(format)
    * function InitializeBehaviors()
    * function InsertElement(element)
    * function InsertElementAndGetIt(e)
    * function InsertHtml(html)
    * function IsDirty();
    * function MakeEditable()
    * function OnDoubleClick(element)
    * function Paste()
    * function PasteAsPlainText()
    * function PasteFromWord()
    * function Preview()
    * function RegisterDoubleClickHandler(handlerFunction, tag)
    * function ResetIsDirty();
    * function SetHTML(html, forceWYSIWYG)
    * function SetStatus()
    * function ShowContextMenu(x, y)
    * function SwitchEditMode()
    * function UpdateLinkedField()


    EventsOnce the editor loading is complete and it is ready to use (and interact with JavaScript), a standard function is called in the page that contains the editor, if the function is defined. This function must be named "FCKeditor_OnComplete" and receives the related editor instance as the parameter. Using it, you can execute any initial code that makes the initial interaction with the editor. This is a declaration example:


    function FCKeditor_OnComplete( editorInstance )
    {
    alert( editorInstance.Name ) ;
    }

    Apart the above standard event, every FCKeditor instance has a "Event" object that can be used to listen for events to be fired. For example, the following code listens for the "OnSelectionChange" to execute custom code:


    var counter = 0 ;
    function DoSomething( editorInstance )
    {
    window.document.title = editorInstance.Name + ' : ' + ( ++counter ) ;
    }
    function FCKeditor_OnComplete( editorInstance )
    {
    editorInstance.Events.AttachEvent( 'OnSelectionChange', DoSomething ) ;
    }

    Note that every callback function receives the editor instance as a parameter.

    The following is the list of events available:

    OnSelectionChange: fired when the actual selection in the editor area changes (by selection I mean the cursor position too... it changes on key strokes). Note: In IE6, this event does not fire on every keystroke, but only on some random keystrokes. Handy!

    OnAfterSetHTML: fired once the HTML is loaded in the editor (including when changing views).

    OnStatusChange: fired when the editor status changes. The following constants are also available globally in the page: FCK_STATUS_NOTLOADED, FCK_STATUS_ACTIVE and FCK_STATUS_COMPLETE.

    OnPaste: fired when something is pasted in the editor
  • 相关阅读:
    h5布局之道(最终篇)
    javascript 数组的常用方法总结
    排序算法之简单排序算法
    浅谈h5移动端页面的适配问题
    开园子啦(浅谈移动端以及h5的发展)
    Android开发(二):RelativeLayout、FrameLayout、LinearLayout、TableLayout、AbsoluteLayout各种Layout属性
    Android开发(一):android环境搭建
    为何没有人用DELPHI IDHTTP + WEB做三层应用
    Asp.net学习1-弹出消息框
    处理SQL函数IN问题
  • 原文地址:https://www.cnblogs.com/xiaotaoliang/p/746851.html
Copyright © 2011-2022 走看看