php 中调用fckeditor网页编辑器方法
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-29 14:04:10 浏览: 评论:0
下面中要在html 中调用就行了
- <script src=”fckeditor/fckeditor.js”></script>
- <script type=”text/网页特效”>
- 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如何调用代码如:
- <?
- include("../editor/fckeditor.php");
- $ofckeditor = new fckeditor('fckeditor1') ;
- $ofckeditor->basepath = '../editor/';
- $ofckeditor->value = '';
- $ofckeditor->width = '100%' ;
- $ofckeditor->height = '360' ;
- $ofckeditor->create() ;
- ?>
如果php要获取值就直接 $_post['fckeditor1']; 就可以了。
Tags: php fckeditor 网页编辑器
相关文章
- ·PHP 是什么?(2013-11-12)
- ·Php.ini文件位置在哪里 Php.ini文件找不到(2013-11-12)
- ·PHP 数据类型(2013-11-12)
- ·php 获取当前脚本的url(2013-11-12)
- ·php技术生成静态页面的实现(2013-11-13)
- ·缺陷月项目启动 披露PHP脚本语言漏洞(2013-11-13)
- ·在PHP中全面阻止SQL注入式攻击(2013-11-13)
- ·php生成随机密码的几种方法(2013-11-13)
- ·PHP中使用FCKeditor2.3.2配置(2013-11-13)
- ·如何使用PHP开发高效的WEB系统(2013-11-13)
- ·php:树形结构的算法(2013-11-13)
- ·php4和php5区别(2013-11-13)
- ·php数据库连接(2013-11-13)
- ·如何正确理解PHP的错误信息(2013-11-13)
- ·php页面漏洞分析及相关问题解决(2013-11-13)
- ·当在连接PHP时,抱怨一些数值没有定义参考?(2013-11-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)