百度ueditor 上传图片后如何设置样式,ueditor上传图片_PHP教程
程序员文章站
2022-05-01 09:19:33
...
百度ueditor 上传图片后如何设置样式,ueditor上传图片
最近项目中遇到一个问题,UEditor上传图片后,在内容展示会修改图片样式。但是表情也是img标签,所以全局修改是有问题的,
所以只能着手修改一下插件的代码。
首先找到图片上传的服务器段文件。这里主要是php讲解
找到php目录下Uploader.class.php 337行
public function getFileInfo() { return array( "state" => $this->stateInfo, "url" => $this->fullName, "title" => $this->fileName, "original" => $this->oriName, "type" => $this->fileType, "class"=> "aaa" "size" => $this->fileSize, ); }
这样返回的json 多一个class 属性的值
一种是修改js
找到ueditor.all.js 中 24461 如下代码
修改js
function callback(){ try{ var link, json, loader, body = (iframe.contentDocument || iframe.contentWindow.document).body, result = body.innerText || body.textContent || ''; json = (new Function("return " + result))(); link = me.options.imageUrlPrefix + json.url; if(json.state == 'SUCCESS' && json.url) { loader = me.document.getElementById(loadingId); loader.setAttribute('src', link); loader.setAttribute('_src', link); loader.setAttribute('class', json.class || ''); //添加行代码 loader.setAttribute('title', json.title || ''); loader.setAttribute('alt', json.original || ''); loader.removeAttribute('id'); domUtils.removeClasses(loader, 'loadingclass'); } else { showErrorLoader && showErrorLoader(json.state); } }catch(er){ showErrorLoader && showErrorLoader(me.getLang('simpleupload.loadError')); } form.reset(); domUtils.un(iframe, 'load', callback); }
这样上传下图片你就能看见上传的图片都多了个样式。
推荐阅读
-
百度ueditor组件上传图片后如何设置img里的alt属性
-
php百度在线编辑器ueditor 图片上传失败 求解答
-
关于UEditor编辑器远程图片上传失败的解决办法_PHP教程
-
百度ueditor 上传图片后如何设置样式,ueditor上传图片
-
v1 3 6-ueditor v1.3.6 如何修改图片上传路径 php
-
百度编辑器ueditor上传图片路径是如何修改的?
-
使用Ueditor上传图片后自定义样式类名介绍
-
php项目中,ueditor上传图片后图片路径如何获取并保持到数据库中?
-
关于UEditor编辑器远程图片上传失败的解决办法_PHP教程
-
ueditor 在PHP中上传图片或文件后,想再次编辑出现 html 代码问题,没能出现图片和文件,请问各位大侠,怎么解?