kindeditor 图片上传插件

  富文本编辑器,kindeditor是比较好用的一款。需要的功能都有,文档、demo也详细。有什么功能去官网看一眼就好。

  官网:http://kindeditor.net/

  一些好用的如图片上传,kindeditor还特意抽取出来,供单独调用。

  写这博客是为了警示自己的傻逼,调了一天都没成功的图片上传插件,耐下心来看源码5分钟就搞定了。

KindEditor.ready(function(K) {
		var editor = K.editor({
			allowFileManager : true,
			uploadJson:'/processuploadimg'
		});
		K('#image1').click(function() {
			editor.loadPlugin('image', function() {
				editor.plugin.imageDialog({
					imageUrl : K('#url1').val(),
					clickFn : function(url, title, width, height, border, align) {
						K('#url1').val(url);
						editor.hideDialog();
					}
				});
			});
		});
});

  恩,就是这样。

原文地址:https://www.cnblogs.com/qiuyeyaozhuai/p/3772674.html