欢迎来到天天文库
浏览记录
ID:1121423
大小:97.50 KB
页数:18页
时间:2017-11-07
《javaspcipt调用fckeditor方法》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、使用javaspript调用FCKeditor的方法1、FCKeditor下载地址FCKeditor官方网站:http://www.fckeditor.net/FCKeditorWiki:http://wiki.fckeditor.net/2、安装FCKeditor解压“FCKeditor_2.4.3.zip”文档到您的网站目录下,我们先假定您存放FCKeditor和调用脚本存于同一个目录下。目录结构如下图所示:图2:网站目录结构图fckeditor目录包含FCKeditor2.4.3程序文件。check.php用于处理表单数据。a
2、dd_article.php和add_article_js.html分别是PHP调用FCKeditor和JavaScript调用FCKeditor实例脚本文件。用JavaScript调用FCKeditor调用FCKeditor必须先载入FCKeditor类文件,但与PHP调用方法不同,应用下面的代码。载入FCKeditor类成功后,有三种方法创建(显示)编辑器
3、。一:内嵌方法(推荐)在您想要显示FCKeditor的地方创建如下代码(通常在表单里):varoFCKeditor=newFCKeditor('FCKeditor1');oFCKeditor.BasePath="./fckeditor/";oFCKeditor.Create();下面是笔者创建好的实例代码,您可将代码保存为add_article_js.html。4、fckeditor/fckeditor.js">用JavaScript调用FCKeditorvaroFCKeditor=newFCKe5、ditor('FCKeditor1');oFCKeditor.BasePath="./fckeditor/";oFCKeditor.Create();通过浏览里打开http://you-address/add_article_js.html查看FCKeditor安装效果。效果和图3完全一样。同样,如果您可以使用和前面一样的方法取得编辑器的POST变量值。$fckeditorValue=$_POST6、['FCKeditor1'];文本区域(TEXTAREA)方法同内嵌方法一样,也必须先载入fckeditor类。但创建(显示)编辑器同内嵌方法不同,我们需要为window.onload定义一个函数。这样,函数便可以在页面加载时执行了。函数的定义代码如下所示。window.onload=function(){varoFCKeditor=newFCKeditor('MyTextarea');oFCKeditor.BasePath="./FCKeditor/";oFCKedito7、r.ReplaceTextarea();}接着,您就可以在页面中(通常在表单里)定义id为MyTextarea的文本区域(TEXTAREA)。代码如下所示:下面是笔者创建好的实例代码,显示效果当然也是一样的。笔者这里就不哆嗦了。window.onload=function(){varoFCKeditor=newFCKeditor('MyTextarea');oFCKeditor.Bas
4、fckeditor/fckeditor.js">用JavaScript调用FCKeditorvaroFCKeditor=newFCKe
5、ditor('FCKeditor1');oFCKeditor.BasePath="./fckeditor/";oFCKeditor.Create();通过浏览里打开http://you-address/add_article_js.html查看FCKeditor安装效果。效果和图3完全一样。同样,如果您可以使用和前面一样的方法取得编辑器的POST变量值。$fckeditorValue=$_POST
6、['FCKeditor1'];文本区域(TEXTAREA)方法同内嵌方法一样,也必须先载入fckeditor类。但创建(显示)编辑器同内嵌方法不同,我们需要为window.onload定义一个函数。这样,函数便可以在页面加载时执行了。函数的定义代码如下所示。window.onload=function(){varoFCKeditor=newFCKeditor('MyTextarea');oFCKeditor.BasePath="./FCKeditor/";oFCKedito
7、r.ReplaceTextarea();}接着,您就可以在页面中(通常在表单里)定义id为MyTextarea的文本区域(TEXTAREA)。代码如下所示:下面是笔者创建好的实例代码,显示效果当然也是一样的。笔者这里就不哆嗦了。window.onload=function(){varoFCKeditor=newFCKeditor('MyTextarea');oFCKeditor.Bas
此文档下载收益归作者所有