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菜鸟
var text=CKEDITOR.instances.content.getData();
CKEDITOR.instances.text1.setData('你好');