富文本编辑器 Quill

码农软件 · 软件分类 · 可视化HTML编辑器 · 2019-04-06 23:41:33

软件介绍

Quill 是一个开源的富文本编辑器,基于可扩展的架构设计,提供丰富的 API 进行定制。

特性:

  • 快速且轻量级

  • 语意标签

  • 标准化 HTML

  • 支持 Chrome, Firefox, Safari, and IE 9+

使用方法:

<!-- Create the toolbar container -->
<div id="toolbar">
  <button class="ql-bold">Bold</button>
  <button class="ql-italic">Italic</button>
</div>

<!-- Create the editor container -->
<div id="editor">
  <div>Hello World!</div>
</div>

<!-- Include the Quill library -->
<script src="http://quilljs.com/js/quill.js"></script>

<!-- Initialize Quill editor -->
<script>
  var editor = new Quill('#editor');
  editor.addModule('toolbar', { container: '#toolbar' });
</script>

本文地址:https://codercto.com/soft/d/3027.html

Data Structures and Algorithms with JavaScript

Data Structures and Algorithms with JavaScript

Michael McMillan / O'Reilly Media / 2014-2-22 / USD 28.51

If you’re using JavaScript on the server-side, you need to implement classic data structures that conventional object-oriented programs (such as C# and Java) provide. This practical book shows you how......一起来看看 《Data Structures and Algorithms with JavaScript》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

URL 编码/解码
URL 编码/解码

URL 编码/解码