`
打了个D
  • 浏览: 74280 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

javascript获取和设置FCKeditor内容

阅读更多

利用Javascript取和设FCKeditor值也是非常容易的,如下:

// 获取编辑器中HTML内容
function getEditorHTMLContents(EditorName) { 
var oEditor = FCKeditorAPI.GetInstance(EditorName); 
return(oEditor.GetXHTML(true)); 
}

// 获取编辑器中文字内容
function getEditorTextContents(EditorName) { 
var oEditor = FCKeditorAPI.GetInstance(EditorName); 
return(oEditor.EditorDocument.body.innerText); 
}

// 设置编辑器中内容
function SetEditorContents(EditorName, ContentStr) { 
var oEditor = FCKeditorAPI.GetInstance(EditorName) ; 
oEditor.SetHTML(ContentStr) ; 
}

FCKeditorAPI是FCKeditor加载后注册的一个全局对象,利用它我们就可以完成对编辑器的各种操作。

在当前页获得 FCK 编辑器实例:
var Editor = FCKeditorAPI.GetInstance('InstanceName');

从 FCK 编辑器的弹出窗口中获得 FCK 编辑器实例:
var Editor = window.parent.InnerDialogLoaded().FCK;

从框架页面的子框架中获得其它子框架的 FCK 编辑器实例:
var Editor = window.FrameName.FCKeditorAPI.GetInstance('InstanceName');

从页面弹出窗口中获得父窗口的 FCK 编辑器实例: 
var Editor = opener.FCKeditorAPI.GetInstance('InstanceName');

获得 FCK 编辑器的内容:
oEditor.GetXHTML(formatted); // formatted 为:true|false,表示是否按HTML格式取出
也可用: 
oEditor.GetXHTML();

设置 FCK 编辑器的内容:
oEditor.SetHTML("content", false); // 第二个参数为:true|false,是否以所见即所得方式设置其内容。此方法常用于"设置初始值"或"表单重置"哦作。

插入内容到 FCK 编辑器:
oEditor.InsertHtml("html"); // "html"为HTML文本

检查 FCK 编辑器内容是否发生变化:
oEditor.IsDirty();

在 FCK 编辑器之外调用 FCK 编辑器工具条命令:
命令列表如下:
DocProps, Templates, Link, Unlink, Anchor, BulletedList, NumberedList, About, Find, Replace, Image, Flash, SpecialChar, Smiley, Table, TableProp, TableCellProp, UniversalKey, Style, FontName, FontSize, FontFormat, Source, Preview, Save, NewPage, PageBreak, TextColor, BGColor, PasteText, PasteWord, TableInsertRow, TableDeleteRows, TableInsertColumn, TableDeleteColumns, TableInsertCell, TableDeleteCells, TableMergeCells, TableSplitCell, TableDelete, Form, Checkbox, Radio, TextField, Textarea, HiddenField, Button, Select, ImageButton, SpellCheck, FitWindow, Undo, Redo

使用方法如下:
oEditor.Commands.GetCommand('FitWindow').Execute();

= FCKConfig.BasePath + 'plugins/' 
// FCKConfig.Plugins.Add( 'placeholder', 'en,it' ) ;


去掉//后,就相当于把placeholder这个插件功能加上了,fckeditor的插件文件都在/editor/plugins/文件夹下分类按文件夹放置的,对于fckeditor2.0来说,里面有两个文件夹,也就是有两个官方插件,placeholder这个文件夹就是我们刚才加上去的,主要用于多参数或单参数自定义标签的匹配,这个在制作编辑模板时非常管用,要想看具体实例的话,大家可以去下载acms 这个系统查看学习,另一个文件夹tablecommands就是编辑器里的表格编辑用到的了。当然,如果你想制作自己其它用途的插件,那就只要按照 fckeidtor插件的制作规则制作完放置在/editor/plugins/下就行,然后再在fckeidtor.js里再添加 FCKConfig.Plugins.Add('Plugin Name',',lang,lang');就可以了。

第二部分 ,如何让编辑器一打开的时候,编辑工具条不出现,等点“展开工具栏”时才出现?Easy,FCKeditor本身提供了这个功能啦,打开fckconfig.js,找到

FCKConfig.ToolbarStartExpanded = true ;
改成
FCKConfig.ToolbarStartExpanded = false ;
就可以啦!

第三部分,使用自己的表情图标,同样打开fckcofnig.js到最底部那一段


FCKConfig.SmileyPath = FCKConfig.BasePath + 'images/smiley/msn/' ;
FCKConfig.SmileyImages = ['regular_smile.gif','sad_smile.gif','wink_smile.gif'] ;
FCKConfig.SmileyColumns = 8 ;
FCKConfig.SmileyWindowWidth = 320 ;
FCKConfig.SmileyWindowHeight = 240 ;

上面这段已经是我修改过的了,为了我发表此文的版面不会被撑得太开,我把FCKConfig.SmileyImages那一行改得只有三个表情图了。

第一行,当然是表情图标路径的设置,第二行是相关表情图标文件名的一个List,第三行是指弹出的表情添加窗口最每行的表情数,下面两个参数是弹出的模态窗口的宽和高喽。

第四部分,文件上传管理部分

此部分可能是大家最为关心的,上一篇文章简单的讲了如何修改来上传文件以及使用fckeidtor2.0才提供的快速上传功能。再我们继续再深层次的讲解上传功能

FCKConfig.LinkBrowser = true ;
FCKConfig.ImageBrowser = true ;
FCKConfig.FlashBrowser = true ;在fckconfig.js找到这三句,这三句不是连着的哦,只是我把他们集中到这儿来了,设置为true的意思就是允许使用fckeditor来浏览服务器端的文件图像以及flash等,这个功能是你插入图片时弹出的窗口上那个“浏览服务器”按钮可以体现出来,如果你的编辑器只用来自己用或是只在后台管理用,这个功能无疑很好用,因为他让你很直观地对服务器的文件进行上传操作。但是如果你的系统要面向前台用户或是像blog这样的系统要用的话,这个安全隐患可就大了哦。于是我们把其一律设置为false;如下

FCKConfig.LinkBrowser = false ;
FCKConfig.ImageBrowser = false ;
FCKConfig.FlashBrowser = false ;

这样一来,我们就只有快速上传可用了啊,好!接下来就来修改,同样以asp为范例进行,进入/editor/filemanager/upload/asp/打开config.asp,修改
ConfigUserFilesPath = "/UserFiles/"这个设置是上传文件的总目录,我这里就不动了,你想改自己改了

好,再打开此目录下的upload.asp文件,找到下面这一段


Dim resourceType
If ( Request.QueryString("Type") <> "" ) Then
resourceType = Request.QueryString("Type")
Else
resourceType = "File"
End If 
然后再在其后面添加


ConfigUserFilesPath = ConfigUserFilesPath & resourceType &"/"& Year(Date()) &"/"& Month(Date()) &"/" 
这样的话,上传的文件就进入“/userfiles/文件类型(如image或file或flash)/年/月/”这样的文件夹下了,这个设置对单用户来用已经足够了,如果你想给多用户系统用,那就这样来改


ConfigUserFilesPath = ConfigUserFilesPath & Session("username") & resourceType &"/"& Year(Date()) &"/"& Month(Date()) &"/" 
这样上传的文件就进入“/userfiles/用户目录/文件类型/年/月/”下了,当然如果你不想这么安排也可以修改成别的,比如说用户目录再深一层等,这里的Session("username")请根据自己的需要进行修改或换掉。

上传的目录设置完了,但是上传程序还不会自己创建这些文件夹,如果不存在的话,上传不会成功的,那么我们就得根据上面的上传路径的要求进行递归来生成目录了。

找到这一段


Dim sServerDir
sServerDir = Server.MapPath( ConfigUserFilesPath )
If ( Right( sServerDir, 1 ) <> "\" ) Then
sServerDir = sServerDir & "\"
End If

把它下面的这两行


Dim oFSO
Set oFSO = Server.CreateObject( "Scripting.FileSystemObject" ) 
用下面这一段代码来替换


dim arrPath,strTmpPath,intRow
strTmpPath = ""
arrPath = Split(sServerDir, "\") 
Dim oFSO
Set oFSO = Server.CreateObject( "Scripting.FileSystemObject" )
for intRow = 0 to Ubound(arrPath)
strTmpPath = strTmpPath & arrPath(intRow) & "\"
if oFSO.folderExists(strTmpPath)=false then 
oFSO.CreateFolder(strTmpPath) 
end if 
next 
用这段代码就可以生成你想要的文件夹了,在上传的时候自动生成。

好了,上传文件的修改到现在可以暂时告一段落了,但是,对于中文用户还存在这么个问题,就是fckeditor的文件上传默认是不改名的,同时还不支持中文文件名,这样一来是上传的文件会变成“.jpg”这样的无法读的文件,再就是会有重名文件,当然重名这点倒没什么,因为fckeditor会自动改名,会在文件名后加(1)这样来进行标识。但是,我们通常的习惯是让程序自动生成不重复的文件名

在刚才那一段代码的下面紧接着就是
' Get the uploaded file name.
sFileName = oUploader.File( "NewFile" ).Name
看清楚了,这个就是文件名啦,我们来把它改掉,当然得有个生成文件名的函数才行,改成下面这样

'//取得一个不重复的序号
Public Function GetNewID()
dim ranNum
dim dtNow
randomize
dtNow=Now()
ranNum=int(90000*rnd)+10000
GetNewID=year(dtNow) & right("0" & month(dtNow),2) & right("0" & day(dtNow),2) & right("0" & hour(dtNow),2) & right("0" & minute(dtNow),2) & right("0" & second(dtNow),2) & ranNum
End Function

' Get the uploaded file name.
sFileName = GetNewID() &"."& split(oUploader.File( "NewFile" ).Name,".")(1)

上传的文件就自动改名生成如20050802122536365.jpg这样的文件名了,是由年月日时分秒以及三位随机数组成的文件名了

 

 

=====================================

 

创建FCKeditor

 

function initHtmlEditor(webRoot, contentFieldId)
{   
    var sBasePath = webRoot+"/fckeditor/" ;
    var oFCKeditor = new FCKeditor( contentFieldId ) ;
        
    oFCKeditor.Height="100%";
    oFCKeditor.BasePath = sBasePath ;
    oFCKeditor.ReplaceTextarea() ;
}
 

 

 

 

FCKeditor加载完成后做处理的方法

function FCKeditor_OnComplete( editorInstance ) { 
	editorInstance.Events.AttachEvent( 'OnBlur' , FCKeditor_OnBlur ) ; 
	editorInstance.Events.AttachEvent( 'OnFocus', FCKeditor_OnFocus ) ; 
} 

function FCKeditor_OnBlur( editorInstance ) { 
	editorInstance.ToolbarSet.Collapse() ; 
} 

function FCKeditor_OnFocus( editorInstance ) { 
	editorInstance.ToolbarSet.Expand() ; 
} 
 

测试页面:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>FCKeditor - Sample</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="robots" content="noindex, nofollow" />
    <link href="../sample.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="fckeditor.js"></script>
    <script type="text/javascript">
        /* 获取值 */
        function getEditorHTMLContents(EditorName)
        {
            var oEditor = FCKeditorAPI.GetInstance(EditorName);
            return (oEditor.GetXHTML(true));
        }
        function SetEditorContents(EditorName,ContentStr)
        {
            var oEditor = FCKeditorAPI.GetInstance(EditorName);
            oEditor.SetHTML(ContentStr);
        }
        function FCKeditor_OnBlur( editorInstance ) 
        { 
            //editorInstance.ToolbarSet.Collapse() ; 
            document.getElementById('txtContent').value = getEditorHTMLContents('FCKeditor1');
        } 
        
        function FCKeditor_OnFocus( editorInstance ) 
        { 
            //editorInstance.ToolbarSet.Expand() ; 
        } 
        function FCKeditor_OnComplete( editorInstance ) 
        { 
            editorInstance.Events.AttachEvent( 'OnBlur' , FCKeditor_OnBlur ) ; 
            editorInstance.Events.AttachEvent( 'OnFocus', FCKeditor_OnFocus ) ; 
        } 
    </script>
</head>
<body>
    <hr />    <br />
    <form target="_blank">
        <script type="text/javascript">
        <!--
            // Automatically calculates the editor base path based on the _samples directory.
            // This is usefull only for these samples. A real application should use something like this:
            // oFCKeditor.BasePath = '/fckeditor/' ;    // '/fckeditor/' is the default value.
            var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
            
            var sLang ;
            if ( document.location.search.length > 1 )
                sLang = document.location.search.substr(1) ;
            
            var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
            oFCKeditor.BasePath    = sBasePath ;
            if ( sLang == null )
            {
                oFCKeditor.Config["AutoDetectLanguage"] = true ;
                oFCKeditor.Config["DefaultLanguage"]    = "en" ;
            }
            else
            {
                oFCKeditor.Config["AutoDetectLanguage"] = false ;
                oFCKeditor.Config["DefaultLanguage"]    = sLang ;
            }
            oFCKeditor.Value = '' ;
            oFCKeditor.Create() ;
            FCKeditor_OnComplete(oFCKeditor);
        //-->
        </script>
        <br />
        <input type="submit" value="获取值" onclick="document.getElementById('txtContent').value = getEditorHTMLContents('FCKeditor1'); return false;"/>
        <br />
        <input id="txtContent" type="text" />
        <input type="submit" value="设置值" onclick="SetEditorContents('FCKeditor1',document.getElementById('txtContent').value); return false;"/>
    </form>
</body>
</html>
 

转载:http://www.cnblogs.com/KimSky/archive/2008/11/26/1341066.html

分享到:
评论

相关推荐

    javascript获取FCKeditor内容

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

    javascript获取FCKeditor内容.txt

    本文详细介绍了如何使用JavaScript操作FCKeditor编辑器的内容,包括获取和设置内容的方法,以及一些常用的编辑器命令和插件管理技巧。通过这些方法,开发者可以更灵活地控制编辑器的行为,满足不同的业务需求。

    javascript获取FCKeditor内容.pdf

    JavaScript是与FCKeditor交互的主要语言,用于获取和设置编辑器中的内容,以及执行各种编辑操作。本文将详细介绍如何使用JavaScript获取和操作FCKeditor的内容。 首先,FCKeditor在页面加载完成后会注册一个全局...

    javascript获取FCKeditor内容[文].pdf

    JavaScript获取FCKeditor内容主要涉及的是在Web应用中与富文本编辑器FCKeditor的交互。FCKeditor是一款开源的富文本编辑器,允许用户在网页上编辑HTML内容,类似于Word文档编辑。以下是对FCKeditorAPI的详细解释以及...

    javascript 获取FCKeditor内容

    获取FCKeditor内容的方法主要有两种: 1. `GetXHTML(formatted)`:这个方法返回编辑器中的HTML内容。`formatted`参数是一个布尔值,如果设为`true`,则返回格式化的HTML;设为`false`,则返回未格式化的HTML。默认...

    FCKeditor获取选中内容的JS

    本文将详细介绍如何通过JavaScript获取FCKeditor中的选中内容以及整个编辑框的HTML内容。 首先,我们需要了解FCKeditor的基本结构。FCKeditor的核心是通过IFrame实现的,编辑区域实际上是一个嵌入在页面中的独立...

    Js 获取和修改FCKeditor的值的代码

    不仅可以轻松获取和设置编辑器内容,还可以通过各种方法实现复杂的编辑器操作。这对于提升用户在Web应用中的体验至关重要。同时,通过合理利用FCKeditor提供的插件机制,可以进一步扩展编辑器的功能,满足不同场景的...

    request_and_set_FCKeditor_value.rar_fckeditor val_javascript

    总的来说,掌握如何通过JavaScript获取和设置FCKeditor的值对于开发涉及富文本编辑功能的Web应用程序至关重要。通过理解FCKeditorAPI提供的方法,我们可以灵活地管理编辑器中的内容,提升用户体验。同时,结合实际...

    javascript组件:FCKeditor控件

    5. **提交内容**:当用户完成编辑后,通过JavaScript获取编辑器中的HTML内容,并将其发送到服务器端进行存储或处理。 三、与其他技术的交互 1. **JSP集成**:在JSP环境中,FCKeditor可以与JavaServlet交互,将编辑...

    FCKeditor 使用指南及 JavaScript 调用

    - 数据提交:通常,你需要在表单提交时获取FCKeditor的HTML内容,然后通过POST方式发送到服务器进行处理。 - 图片/文件上传:FCKeditor支持内置的文件管理器,允许用户上传图片和其他文件。服务器端需要提供接收和...

    利用Javascript取和设FCKeditor值(转)

    NULL 博文链接:https://zyzhongyang.iteye.com/blog/839996

    FCKeditor控件和控件的使用说明

    **FCKeditor内容判断** 在某些情况下,我们需要检测FCKeditor中的内容是否为空,以便进行相应的处理。这可以通过JavaScript实现。下面是一个简单的示例,用于检查FCKeditor的内容: ```javascript function ...

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

    获取FCKeditor内容 FCKeditor提供了两个方法来获取编辑器中的内容,分别对应HTML内容和纯文本内容: - **获取HTML内容**: ```javascript function getEditorHTMLContents(EditorName) { var oEditor = ...

    获取FCKeditor选中字符

    总的来说,获取FCKeditor选中字符涉及到对JavaScript选区的理解,以及对IFrame和FCKeditor/CKEditor API的熟悉。正确使用这些技术可以帮助开发者更有效地处理用户在富文本编辑器中的选择操作,从而提升应用的用户...

    fckeditor的MVC版及js使用fckeditor的方法

    例如,当用户提交表单时,需要获取FCKeditor中的内容。这可以通过JavaScript的`FCKeditorObject.GetInstance`方法实现: ```javascript var editor = FCKeditorAPI.GetInstance('myEditor'); var ...

    FCKeditor demo(用JS方式)

    **FCKeditor** 是一款基于JavaScript的开源富文本编辑器,它允许用户在网页上创建、编辑和格式化文本,类似于Microsoft Word的功能在Web页面上实现。这个"**FCKeditor demo (用JS方式)**"提供了如何使用JavaScript来...

    简单FCKeditor在jsp中的使用

    在JSP(JavaServer Pages)环境中集成FCKeditor,可以方便地创建具有用户友好的内容编辑界面,这对于构建动态网站和内容管理系统非常有用。下面我们将详细讲解如何在JSP中配置和使用FCKeditor,以及如何获取编辑器中...

    FCKeditor在线编辑器教程

    FCKeditor是一款强大的开源在线文本编辑器,广泛用于网站建设和内容管理系统中,为用户提供类似桌面文字处理软件的编辑体验。本教程将深入介绍FCKeditor的安装、配置、使用及自定义方法,帮助开发者和网站管理员更好...

    FCKeditorDemo,教你如何使用FCKeditor的相关资料

    3. **获取和设置编辑器内容**: 使用`FCKeditorInstance.GetValue()`方法可以获取编辑器中的内容,而`FCKeditorInstance.SetHTML(content)`则用于设置编辑器的初始内容。 **FCKeditor的调试方法** 1. **浏览器...

Global site tag (gtag.js) - Google Analytics