编辑器字体颜色
如
测试使用文字
显示后,没有字的颜色和字体,字的大小
显示后是这个样子的
测试使用文字
是怎么原因,怎么解决,求指教
页面代码
var editor;
KindEditor.options.filterMode = false;
KindEditor.ready(function(K) {
editor = K.create('#kindeditor2', {
themeType : 'oschina',
width:'570px',
resizeType : 2,
urlType: 'domain',
shadowMode : false,
cssPath : '/css/ke-oschina.css',
allowPreviewEmoticons : false,
newlineTag : 'br',
afterCreate : function(){
K.ctrl(this.edit.iframe.get(0).contentWindow.document, 13, function() {
$("#kindeditor2").parent().submit();
});
},
afterChange : function() {
this.sync();
},
items : [
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'link','unlink','source','about']
});
});
<textarea id="kindeditor2" name="content" cols="100" rows="8" style="width:720px;height:350px;"></textarea>
加载JS
<script type="text/javascript" language="javascript" charset="utf-8" src="<?=site_url('plugins/kindeditor/kindeditor.js')?>"></script>
<script type="text/javascript" language="javascript" charset="utf-8" src="<?=site_url('plugins/kindeditor/lang/zh_CN.js')?>"></script>
php 接受:
$content=$_POST['content'];