您的位置:首页 > 产品设计 > UI/UE

修复ecshop后台部署Ueditor页面加载报错问题!

2015-05-15 09:48 190 查看


涉及文件:includes/ueditor/ueditor.all.min.js 大约40-41行

switch(b){case "className":d[b]="";break;case "style":d.style.cssText=
"",!q.ie&&d.removeAttributeNode(d.getAttributeNode("style"))}d.removeAttribute(b)}}


修改为

switch(b){case "className":d[b]="";break;case "style":d.style.cssText=
"";if(d.getAttributeNode("style")!==null){!q.ie&&d.removeAttributeNode(d.getAttributeNode("style"))}}d.removeAttribute(b)}}


即可解决这一问题,修改完记得清除浏览器缓存。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ecshop Ueditor
相关文章推荐