php下安装配置fckeditor编辑器的方法

yipeiwu_com5年前PHP代码库
一、PHP调用fckeditor方法。
二、JS调用fckeditor方法。
复制代码 代码如下:

<?php
require_once(PATH_PRE.”fckeditor.php”); // 包含fckeditor类,
$oFCKeditor = new FCKeditor('content') ; //创建一个fckeditor对象,表单的名称为content
$oFCKeditor->BasePath=”../fckeditor/”; //编辑器所在目录
$oFCKeditor->ToolbarSet=”Yiyunnet”; // 默认编辑器工具栏有Basic(基本工具) Default(所有工具)Soft(分一栏可以插入图片视频 ) Renpeng (可以上传图片视频分为两栏 ) Full (三栏)
$oFCKeditor->Height='100%'; //高度
$oFCKeditor->Width='100%'; //宽度
$oFCKeditor->Value=”"; //初始值 还可设置以下部分(”=”包含部分),并非必须:
$oFCKeditor->Config['SkinPath'] = ‘../editor/skins/silver/'; // 设置编辑器皮肤共有三种皮肤default
$oFCKeditor->Create(); //在要显示编缉器的地方输出变量$myeditor的值就行了
?>


FCKeditor js调用方法一
复制代码 代码如下:

<script src=”fckeditor/fckeditor.js”></script>
<script type=”text/javascript”>
var oFCKeditor = new FCKeditor( ‘Content' ) ;
oFCKeditor.BasePath = ‘fckeditor/' ;
oFCKeditor.ToolbarSet = ‘Basic' ;
oFCKeditor.Width = ‘100%' ;
oFCKeditor.Height = ‘400′ ;
oFCKeditor.Value = ” ;
oFCKeditor.Create() ;
</script>

FCKeditor js调用方法二
复制代码 代码如下:

<script src=”fckeditor/fckeditor.js”></script>
<script type=”text/javascript”>
function showFCK(){
var oFCKeditor = new FCKeditor('Content') ;
oFCKeditor.BasePath = ‘fckeditor/' ;
oFCKeditor.ToolbarSet = ‘Basic' ;
oFCKeditor.Width = ‘100%' ;
oFCKeditor.Height = ‘200′ ;
oFCKeditor.Value = ” ;
oFCKeditor.ReplaceTextarea() ;
document.getElementByIdx(”btnShow”).disabled = ‘true';
document.getElementByIdx(”btnShow”).style.display = ‘none';
}
</script>
<textarea name=”Content”></textarea>
<input id=btnShow style=”display:inline” type=button onclick=”showFCK()”>

相关文章

php 更新数据库中断的解决方法

即可解决: set_time_limit(900); 这个函数指定了当前所在php脚本的最大执行时间, 虽然设定值是900秒,实际上 最大执行时间=php.ini里的max_execut...

PHP配置文件中最常用四个ini函数

php的配置函数就是几个ini_*的函数,主要是针对配置文件的操作,其实就四个函数:ini_get、ini_set、ini_get_all、ini_restore。个人感觉最有用的就是i...

比较详细PHP生成静态页面教程

一,PHP脚本与动态页面。   PHP脚本是一种服务器端脚本程序,可通过嵌入等方法与HTML文件混合,也可以类,函数封装等形式,以模板的方式对用户请求进行处理。无论以何种方式,它的基本原...

php异常处理技术,顶级异常处理器

定义顶级异常处理器用到的函数是 set_exception_handler("My_exception"); 这里的My_expection是开发者自定义的异常处理函数,既顶级异常处理器...

PHP读取配置文件类实例(可读取ini,yaml,xml等)

本文实例讲述了PHP读取配置文件类实例。分享给大家供大家参考。具体如下: <?php class Settings { var $_settings = arra...