ueditor配置
1.在项目的的任意文件夹中建立一个存放ueditor相关资源和文件的目录在根目录下建立一个ueditor
2.拷贝源码包中的dialogs themes third-party editor_all.js editor_config.js lang
到文件中其中
3.为简单起见,此处将以根目录下的index.php页面作为编辑器的实例化页面,用来展示UEditor的完整版效果。在index.php文件中,首先导入编辑器需要的三个入口文件
1.编辑器内容的初始化
在editor_config.js文件中找到initialcontent参数设置其值为需要的提示或者问候语即可
2.编辑旧文章从数据库中取出富文本放置到编辑器
<script type="text/plain" id="editor">
//从数据库中取出文章内容打印到此处
</script>
3.提交编辑器内容之服务器之后端
- <form action="" method="post">
- <script type="text/plain" id="editor" name="myContent">
- </script>
- <input type="submit" name="submit" value="提交">
- </form>
- $_POST["myContent"]
|