作者:Timeless | 来源:互联网 | 2023-09-13 19:52
KindEditor.ready(function(K){
window.editor=K.create('#newsContent',{
items:["image"],
cssPath:'plugins/code/prettify.css',
////后台处理图片的文件
uploadJson:'${request.contextPath}/pms/file_upload',
//0:不能缩放,1:可缩放
resizeType:0,
allowPreviewEmoticons:true,
allowImageUpload:true,
afterCreate : function() {
this.sync();
},
afterBlur:function(){
this.sync();
}
})
});