1.下载编辑器
下载地址:http://ueditor.baidu.com/website/ ,选择jsp UTF-8版本,解压到项目的目录下。
2.创建demo文件
在解压后的目录创建一个html文件,引入相应的文件。
3.浏览器打开创建的html页面
如果看到这样的界面,初次部署就成功啦!
4.一些简单的应用
获取编辑器的内容:getContent()
修改编辑器内容:setContent();注意:若传入true,不清空原来的内容,在最后插入内容,否则,清空内容再插入
editor.setContent('<p>new text</p>', true); //插入的结果是<p>old text</p><p>new text</p>编辑器获得焦点:focus() 默认focus到编辑器头部
editor.focus()插入html代码:inserthtml()
editor.execCommand(String cmd, String html)
插入段落:
editor.execCommand( 'insertparagraph' );
插入图片:
(单个图片)
editor.execCommand( 'insertimage', { src:'图片路径', width:'100', height:'100' } );
editor.execCommand( 'insertimage', [{ src:'a/b/c.jpg', width:'100', height:'100' },{ src:'a/b/d.jpg', width:'100', height:'100' }] );