umeditor百度编辑器上传图片时自带域名怎么去除,解决办法

找到百度编辑器目录,umeditor\dialogs\image\image.js  这个js文件 的第37行附近。
注释掉原来的:
// return arr.push({
//     _src: node.src,
//     src: node.src
// });


//qcw 去除域名
var imgsrc = node.src.replace(window.location.protocol + '//' + window.location.hostname + ':' + window.location.port, '');
imgsrc = imgsrc.replace(window.location.protocol + '//' + window.location.hostname, '');

return arr.push({
    _src: imgsrc,
    src: imgsrc
});

你可能感兴趣的:(umeditor)