kindeditor编辑器的问题
想给kindeditor编辑器新加一个样式按钮。想实现点击后,加上样式<span style="font-weight:800">这样的效果</span>
=====================================================================================
程序是php,后台编辑新闻用的编辑器是 kindeditor 4.1.10 下载的最新的版本
由于默认自己带的B加粗效果是用的<strong> 这个标签,我想在加个标签,实现:<span style='font-weight:800'>这样的
在kindeditor.js 里 items:[] 里加了个'fw'
fw : function() {
return this.toggle('<span style="font-weight:800; background-color:#cccccc;"></span>', {
span : '*',
fw : '*'
});
},
定义了这个
因为我的js不是很好,html效果是出来了,但是编辑器效果不对