CKeditor里面写内容如何获取
程序员文章站
2022-06-09 16:14:41
...
CKeditor里面写内容怎么获取
这个是调用编辑器的代码error_reporting(0);
include './ckeditor/ckeditor.php'; //include ckeditor.php
$ckeditor = new CKEditor;
include './ckfinder/ckfinder.php';
$ckeditor->editor('content');
CKFinder::SetupCKEditor($ckeditor, true, true);
?>
我百度用这样的方法:$editor = CKEDITOR.replace("content");
$content=$editor.getData();
但是输出这样的错误Notice: Use of undefined constant CKEDITOR - assumed 'CKEDITOR' in D:\xampp\htdocs\belong\add.php on line 5
Fatal error: Call to undefined function replace() in D:\xampp\htdocs\belong\add.php on line 5 求指导,,,纯属PHP菜鸟
------解决方案--------------------
一直用js 版本的~
------解决方案--------------------
这个可以一句代码获取:
http://www.162100.com/162100editor/
------解决方案--------------------
我是用JS版的
提交时直接获取textarea的ID
------解决方案--------------------
js:
取值:
赋值:
这个是调用编辑器的代码error_reporting(0);
include './ckeditor/ckeditor.php'; //include ckeditor.php
$ckeditor = new CKEditor;
include './ckfinder/ckfinder.php';
$ckeditor->editor('content');
CKFinder::SetupCKEditor($ckeditor, true, true);
?>
我百度用这样的方法:$editor = CKEDITOR.replace("content");
$content=$editor.getData();
但是输出这样的错误Notice: Use of undefined constant CKEDITOR - assumed 'CKEDITOR' in D:\xampp\htdocs\belong\add.php on line 5
Fatal error: Call to undefined function replace() in D:\xampp\htdocs\belong\add.php on line 5 求指导,,,纯属PHP菜鸟
------解决方案--------------------
一直用js 版本的~
------解决方案--------------------
这个可以一句代码获取:
http://www.162100.com/162100editor/
------解决方案--------------------
我是用JS版的
提交时直接获取textarea的ID
------解决方案--------------------
js:
取值:
var text=CKEDITOR.instances.content.getData();
赋值:
CKEDITOR.instances.text1.setData('你好');
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论