大朗网站建设培训,外贸网站建设高端的,广东省住房建设厅网站首页,googlechrome1.解压放入php项目静态资源文件夹#xff0c;如下图#xff1a;Paste_Image.png2.如果只是php使用#xff0c;可以删除其它类型语言的文件夹#xff0c;文件结构如下图#xff1a;Paste_Image.png3.打开php文件夹#xff0c;更改upload_json.php里文件上传目录文件夹至Up…1.解压放入php项目静态资源文件夹如下图Paste_Image.png2.如果只是php使用可以删除其它类型语言的文件夹文件结构如下图Paste_Image.png3.打开php文件夹更改upload_json.php里文件上传目录文件夹至Uploads修改上传文件大小限制。如下图Paste_Image.png4.然后效果图如下Paste_Image.pngfirebug审查提交数据经测试可以正常获取使用KindEditor4.x获取图片实时上传和textarea内容Paste_Image.png代码如下封面图//图片数据内容//文本域内容//引入jquery文件KindEditor.ready(function(K) {//textareaeditor K.create(#contents, {//themeType: simple,resizeType : 1,allowImageRemote : true,width : 60%,height : 40%,uploadJson: __PUBLIC__/kindeditor/php/upload_json.php,fileManagerJson: __PUBLIC__/kindeditor/php/file_manager_json.php,//items : [source,bold,italic,underline,forecolor,image],afterCreate: function(){this.sync();}, //此行可不写不影响获取textarea的值afterBlur : function(){this.sync();}//需要添加的});//封面图实时上传K(#image).click(function() {editor.loadPlugin(image, function() {editor.plugin.imageDialog({imageUrl : K(#url).val(),clickFn : function(url, title, width, height, border, align) {K(#url).val(url);K(#image_show).html();editor.hideDialog();}});});});});