ueditor的使用
程序员文章站
2022-05-26 21:18:56
...
在众多编辑器中,应该还是百度编辑器比较多人使用的,下面介绍一下怎么使用
1、在http://ueditor.baidu.com/website/download.html下载,放在自己的项目中
2、在静态html页面引入三个文件和加入如下代码
ueditor.config.js
ueditor.all.js
ueditor/lang/zh-cn/zh-cn.js
这样就有
<div id="editor" name="detail" type="text/plain" style="height:500px;">
</div>
<script type="text/javascript"> $(function () { //编辑时 var content = $("#content").val(); var ue = UE.getEditor('editor'); ue.ready(function(){ console.log(content); ue.setContent(content,false); });}) </script>这样就ok了
注意:
1、服务端存数据库时:htmlspecialchars()一下,取出来的时候htmlspecialchars_decode()一下
2、页面展示的时候要两次htmlspecialchars_decode(),自己代码是这样写的,这个使用的时候测试一下
下一篇: #程序员的职场