扫一扫分享
Simditor 是Tower开源的一个基于浏览器所见即所得的文本编辑器,它的理念是保持简单,避免过度的功能。
相比传统的编辑器它的特点是:
功能精简,加载快速
输出格式化的标准 html
每一个功能都有非常优秀的使用体验
兼容的浏览器:IE10+、Chrome、Firefox、Safari。
首先需要下载simditor的相关js与css文件,放到自己的项目下面。需要引入的css以及js文件先进行引入。 然后进行到很重要的一步,配置自己的js文件,达到真正引入simditor的目的。
(function() {
$(function() {
var editor,toolbar;
Simditor.locale = 'zh-CN';
toolbar = ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment'];
editor = new Simditor({
textarea: $('#simditor'),
placeholder: '这里输入文字...',
toolbar: toolbar,
pasteImage: true,
defaultImage: '/simditor/images/image.png',
upload: false
});
});
}).call(this);
手机预览