欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

kindeditor自定义工具栏

程序员文章站 2022-05-26 19:03:14
...
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(); 
	        	}      
	        })
	      });