ueditor编辑器视频上传不能预览的问题

ps:来源 https://blog.csdn.net/eadela/article/details/76264168

修改ueditor.all.js文件

ueditor.all.js,17769行

html.push(creatInsertStr( vi.url, vi.width || 420,  vi.height || 280, id + i, null, cl, 'image'));修改为

html.push(creatInsertStr( vi.url, vi.width || 420,  vi.height || 280, id + i, null, cl, 'video'));

7343,7344,7346行,注释掉代码:

var root = UE.htmlparser(html);

me.filterInputRule(root);

html = root.toHtml();

原文地址:https://www.cnblogs.com/pcx105/p/9210298.html