前言
最近写项目用到了富文本编辑器,在同事的建议下,采用了wangEditor3,在此记录下使用wangEditor3的基本步骤以及遇到的一些问题
基本使用
基本使用步骤原作者已讲的非常详细,如有需要,移步----->wangEditor3使用手册
下载
- 直接下载:https://github.com/wangfupeng1988/wangEditor/releases
- 使用npm下载:npm install wangeditor(注意wangeditor全部是小写字母)
- 使用bower下载:bower install wangeditor(前提保证电脑已安装了bower)
- 使用CDN://unpkg.com/wangeditor/release/wangEditor.min.js
使用
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>wangEditor demo</title>
</head>
<body>
<div id="editor">
<p>欢迎使用 <b>wangEditor</b> 富文本编辑器</p>
</div>
<!-- 注意, 只需要引用 JS,无需引用任何 CSS !!!-->
<script type="text/javascript" src="/wangE