`
goldtoad
  • 浏览: 11905 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

FCKeditorAPI中文用例说明

阅读更多
function abc()
  {
   var checkContent =FCKeditorAPI.GetInstance("editor");//获取实例
   alert(checkContent.GetXHTML());//获取当前内容
   var newelement = document.createElement("a");
   newelement.href="#";
   newelement.innerHTML="df";
   checkContent.InsertElement(newelement);//前部添加元素(无返回值)
   var a=checkContent.InsertElementAndGetIt(newelement);//前部添加元素(返回元素)
   checkContent.InsertHtml("")//添加html
   checkContent.SetHTML("",true);//设置内容,后为bool,是否所见即所得
 
  }
  function aaa()
  {
  var checkContent =FCKeditorAPI.GetInstance("editor");//获取实例
  checkContent.SwitchEditMode();//转变编辑模式
  checkContent.UpdateLinkedField();//更新关联文件
  }
function FCKeditor_OnComplete( checkContent )//当加载完
  {
   alert( checkContent.Name ) ;
  }

//设置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();
}

//向编辑器插入指定代码
function insertHTMLToEditor(codeStr){
  var oEditor = FCKeditorAPI.GetInstance("content");
  if (oEditor.EditMode==FCK_EDITMODE_WYSIWYG){
    oEditor.InsertHtml(codeStr);
  }else{
    return false;
  }
}
//统计编辑器中内容的字数
function getLength(){
  var oEditor = FCKeditorAPI.GetInstance("content");
  var oDOM = oEditor.EditorDocument;
  var iLength ;
  if(document.all){
    iLength = oDOM.body.innerText.length;
  }else{
    var r = oDOM.createRange();
    r.selectNodeContents(oDOM.body);
    iLength = r.toString().length;
  }
  alert(iLength);
}
//执行指定动作
function ExecuteCommand(commandName){
  var oEditor = FCKeditorAPI.GetInstance("content") ;
  oEditor.Commands.GetCommand(commandName).Execute() ;
}
//设置编辑器中内容
function SetContents(codeStr){
  var oEditor = FCKeditorAPI.GetInstance("content") ;
  oEditor.SetHTML(codeStr) ;
}

//使用FCKEditor时使用js在光标处添加任意字符串
function InsertHTML(e,inStr)//e:FCKEditor的ID,inStr:要插入的信息
{
        var oEditor = FCKeditorAPI.GetInstance(e) ;
       if ( oEditor.EditMode == FCK_EDITMODE_WYSIWYG )
          {
           oEditor.InsertHtml( inStr ) ;
        }
         else
            alert("You must be on WYSIWYG mode!" ) ;
    }

    function ExecuteCommand( commandName,e )
     {
         var oEditor = FCKeditorAPI.GetInstance(e) ;
         oEditor.Commands.GetCommand( commandName ).Execute() ;
    }
0
1
分享到:
评论

相关推荐

    fckeditor api

    以下是对FCKeditor API的一些关键知识点的详细说明: 1. **安装与集成**:FCKeditor首先需要在项目中进行下载和安装。它通常包含一组JavaScript文件和CSS样式表,通过在HTML页面中引入这些资源,可以将编辑器嵌入到...

    FCKeditorAPI 手册 js操作获取等

    FCKeditorAPI是一套可以对FCKeditor(一款流行的网页所见即所得编辑器)进行JavaScript编程的API。通过这个API,开发者可以使用JavaScript来控制和操作FCKeditor编辑器。FCKeditor(之后被CKEditor替代)是一个富...

    FCKeditor_API使用详解

    ### FCKeditor_API使用详解 #### 一、概述 FCKeditor是一款强大的开源富文本编辑器,被广泛应用于Web应用程序中。它支持多种浏览器,并且提供了丰富的编辑功能,如图片上传、表格绘制等。FCKeditor_API则是用来...

    FCKeditor_API使用详解.pdf

    **FCKeditor API详解** FCKeditor是一款流行的开源富文本编辑器,主要用于在网页上创建类似Word的文本编辑体验。它的API(Application Programming Interface)允许开发者通过JavaScript进行一系列的交互和控制,...

    fckeditor javascript api

    ### FCKeditor JavaScript API #### 概述 FCKeditor是一款功能强大的富文本编辑器,它为用户提供了直观且丰富的文本编辑体验。FCKeditor不仅仅是一个简单的文本输入框,更是一个具备众多高级功能(如图像处理、...

    FckEditor中文配置手册详细说明

    FCKEditor 中文配置手册详细说明 FCKEditor 是一个功能强大且广泛使用的富文本编辑器,它提供了多种功能,如格式化文本、插入图片、插入链接、表格操作等。下面是 FCKEditor 中文配置手册详细说明。 一、下载和...

    javascript获取FCKeditor内容

    FCKeditor提供了一系列的API供开发者调用,以便于与编辑器进行交互。获取编辑器内容主要依赖于`FCKeditorAPI`对象,通过这个对象,可以执行获取HTML内容或纯文本内容等操作。 ##### 1.1 获取HTML内容 ```...

    FCKeditor中文使用手册

    **FCKeditor中文使用手册** FCKeditor是一款强大的开源在线文本编辑器,广泛应用于网站内容管理系统(CMS)、论坛和其他需要富文本编辑功能的Web应用中。这个中文使用手册由建站三人行站长(www.zengl.com)翻译,...

    fckeditor解决中文问题

    《解决FCKeditor中文问题全攻略》 在Web开发中,富文本编辑器FCKeditor因其易用性和功能强大而广受欢迎。然而,对于中文环境的处理,FCKeditor可能会出现一些问题,如中文文件上传后的乱码、创建中文目录时的乱码...

    FCKeditor2.6.4使用说明

    **FCKeditor2.6.4使用说明** FCKeditor是一款功能强大的开源文本编辑器,广泛应用于网页内容编辑,尤其适合需要用户输入HTML内容的网站。版本2.6.4是其历史版本之一,提供了丰富的功能和良好的兼容性。本文将详细...

    FCKeditor获取选中内容的JS

    FCKeditor提供了一个名为`FCKeditorAPI`的对象,通过这个对象我们可以访问编辑器的各种功能。获取选中内容的函数是`FCKeditorAPI.Selection.GetSelectedHtml()`。这个函数会返回一个字符串,包含当前选中的HTML代码...

    FckEditor(包括使用说明).rar

    2. **多语言支持**:支持多种语言,包括中文,便于不同地区的用户使用。 3. **格式化工具栏**:包含字体、字号、颜色、对齐方式、列表、链接、图片、表格等常用编辑工具,使得编辑工作更加便捷。 4. **源码编辑模式*...

    javascript获取FCKeditor内容[文].pdf

    以下是对FCKeditorAPI的详细解释以及如何通过JavaScript获取和设置其内容: 1. **FCKeditorAPI**: FCKeditorAPI是一个全局JavaScript对象,它在FCKeditor加载后自动创建。这个对象提供了多种方法,让我们能够控制...

    request_and_set_FCKeditor_value.rar_fckeditor val_javascript

    例如,如果我们有一个编辑器实例的ID是"FCKeditor1",那么我们可以通过`window.FCKeditorAPI`访问它。 **获取FCKeditor的值** 要获取FCKeditor中的内容,我们可以使用FCKeditorAPI的`GetHTML()`方法。这个方法返回...

    FCKEditor 2.6 JSP 使用说明(嵌入方法)

    **FCKEditor 2.6 JSP 使用说明(嵌入方法)** FCKEditor是一款流行的开源富文本编辑器,主要用于Web应用中,提供用户友好的界面来编辑HTML内容。在JSP环境中集成FCKEditor,可以提升网站内容编辑的用户体验。下面我们...

    javascript获取FCKeditor内容.pdf

    首先,FCKeditor在页面加载完成后会注册一个全局对象`FCKeditorAPI`,通过这个对象我们可以访问并控制FCKeditor实例。获取FCKeditor实例的基本语法是: ```javascript var oEditor = FCKeditorAPI.GetInstance('...

    FckEditor中文配置手册详细说明.doc

    FckEditor中文配置手册详细说明.doc

    JS操作Fckeditor的一些常用方法(获取、插入等)

    var oEditor = FCKeditorAPI.GetInstance(EditorName); return oEditor.GetXHTML(true); } ``` 这里`GetXHTML(true)`会返回格式化的HTML代码,如果传入`false`,则返回未格式化的HTML。 - **获取纯文本内容**: `...

Global site tag (gtag.js) - Google Analytics