博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
富文本_UEditor 富文本编辑器的使用
阅读量:4964 次
发布时间:2019-06-12

本文共 346 字,大约阅读时间需要 1 分钟。

大家做很多后台系统项目大多数都会用到,百度 UEditor 它是由百度 web 前端研发部开发所见即所得富文本 web 编辑器, 简单好用易上手,相对其他百度其他产品 ...... UEditor 对开发者来说还算是良心之作啊,下面分享下百度 UEditor 使用方法,希望对大家有帮助。

1、进入 UEditor 官网下载插件

UEditor 官方网址:http://ueditor.baidu.com/website/index.html

UEditor 下载网址:http://ueditor.baidu.com/website/download.html

直接进入下载页面,Java 的话建议使用 jsp 版本

6406943331861fb02508399934f8f564.png

2、具体使用

下载的文件导入到项目中,文件如下

99044396ec8d7606f4c719ded40e7121.png

页面使用必须引入下面文件

 

实例化调用编辑器

html 代码如下

js 代码如下

//实例化编辑器		var ue = UE.getEditor('editor', {			initialFrameWidth : 800,			initialFrameHeight : 250,			elementPathEnabled : false, //删除元素路径			pasteplain : true, /* 纯文本粘贴 */			autoHeightEnabled : true,/* 启用右侧滚轮,默认是true自动长高模式*/			autoFloatEnabled : true,			toolbars : [ [ 'fullscreen', 'source', '|', 'undo', 'redo', '|',					'bold', 'italic', 'underline', 'removeformat', '|',					'insertorderedlist', 'insertunorderedlist', 'indent', '|',					'justifyleft', 'justifycenter', '|', 'imagenone',					'imageleft', 'imageright', 'imagecenter', 'insertimage',					'|', 'link', 'unlink' ] ]		});		var uu = UE.getEditor('notice', {			initialFrameWidth : 800,			initialFrameHeight : 250,			elementPathEnabled : false, //删除元素路径			pasteplain : true, /* 纯文本粘贴 */			autoHeightEnabled : true,/* 启用右侧滚轮,默认是true自动长高模式*/			autoFloatEnabled : true,			toolbars : [ [ 'fullscreen', 'source', '|', 'undo', 'redo', '|',					'bold', 'italic', 'underline', 'removeformat', '|',					'insertorderedlist', 'insertunorderedlist', 'indent', '|',					'justifyleft', 'justifycenter', '|', 'imagenone',					'imageleft', 'imageright', 'imagecenter', 'insertimage',					'|', 'link', 'unlink' ] ]		});

3、效果如下

e004f4259887746be71943c7b62d3df5.png

实现起来很简单,在这里简单记录下抛砖引玉,希望对大家有帮助。

码字不易,转载请注明出处。

你可能感兴趣的文章
[Leetcode Week13]Search a 2D Matrix
查看>>
查看端口占用cmd命令
查看>>
2019.01.17王苛震作业
查看>>
Halcon学习(八)文本操作
查看>>
清除浮动
查看>>
PayPal(贝宝)支付接口、文档、IPN
查看>>
ORACLE 10G R2_执行计划中cost cardinality bytes cpu_cost io_cost解释
查看>>
本地存储
查看>>
MP3的播放与停止
查看>>
牛客(59)按之字形顺序打印二叉树
查看>>
JavaScript 图表库 xCharts
查看>>
Android项目的目录结构
查看>>
C++中“引用”的底层实现
查看>>
Spring Cloud与微服务构建:微服务简介
查看>>
Babel 是干什么的
查看>>
cocos2dx-3.0(8)------Label、LabelTTF、LabelAtlas、LabelBMFont使用之法
查看>>
CODE[VS] 1842 递归第一次
查看>>
20180418小测
查看>>
数字三角形
查看>>
NGUI 减少drawcall规则
查看>>