富文本编辑器

最近项目要有个新闻修改的功能,ui给的设计图上的文本框上面有很多小工具,于是就去找发现了这个富文本编辑器,还挺好用。

叫做  wangeditor   大致长这个样子

富文本编辑器

使用起来很方便,具体操作:

1. 使用 js 外链引入

<div id="div1">
    <p>欢迎使用 <b>wangEditor</b> 富文本编辑器</p>
</div>

<!-- 引入 wangEditor.min.js -->
<script type="text/javascript">
    const E = window.wangEditor
    const editor = new E('#div1')
    // 或者 const editor = new E( document.getElementById('div1') )
    editor.create()
</script>

2. 使用npm安装

import E from 'wangeditor'
const editor = new E('#div1')
// 或者 const editor = new E( document.getElementById('div1') )
editor.create()

还有很多配置属性

富文本编辑器

官方网站是 https://www.wangeditor.com/

上一篇:将文件上传至ftp服务器,FTP文件上传工具类,将文件上传至服务器指定目录


下一篇:完全卸载云星空客户端步骤