找到編輯器根目錄下面的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教學有興趣的朋友有所幫助。