wangEditor介绍
wangEditor 是一款基于javascript和css开发的html富文本编辑器,开源免费。产品第一版发布于2014年11月。
下载方法
- 点击· https://github.com/wangfupeng1988/wangEditor/releases 下载最新版
- 使用git下载:
git clone https://github.com/wangfupeng1988/wangEditor.git
- 使用npm安装:
npm install wangeditor
(注意 wangeditor 全部是小写字母) - 使用bower下载:
bower install wangEditor
(前提保证电脑已安装了bower)
相关方法
- 官网:wangEditor.github.io
- ndemo:wangEditor.github.io
- 下载:https://github.com/wangfupeng1988/wangEditor/releases
- 源码:https://github.com/wangfupeng1988/wangEditor
- 文档:https://www.kancloud.cn/wangfupeng/wangeditor2/113961 (好多错误,建议初学编程的不要看)
使用方法
文章目录
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wangEdior的test</title>
<link rel="stylesheet" href="./node_modules/wangeditor/release/wangEditor.min.css">
</head>
<body>
<!-- 省略其他内容 -->
<script src="./jQuery/jquery-1.12.4.js"></script>
<script src="./node_modules/wangeditor/release/wangEditor.min.js"></script>
</body>
</html>
注意,要在浏览器中查看页面效果时,不能使用 file://...
. 这种方式(即直接在浏览器中打开html文件的方式),要使用本地服务的方式打开,即需要在本地开启一个服务器。 建议使用 http-server
这个工具。
如果直接用浏览器打开文件,仍然可能出现菜单图标显示乱码的问题,如下图: