Rumah > Artikel > pembangunan bahagian belakang > 百度ueditor上传图片时设置默认宽高度
找到编辑器根目录下面的ueditor.all.js ,一打开吓到哥了,上万行代码,不过不要怕,search 一下 :cllback() 找到这个函数
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('title', json.title || ''); loader.setAttribute('alt', json.original || ''); loader.setAttribute('style','max-width:650px');//这里就是哥加入的代码 loader.removeAttribute('id'); domUtils.removeClasses(loader, 'loadingclass'); }
以上就介绍了百度ueditor上传图片时设置默认宽高度,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。