欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ueditor1.4.3 在IE8下的 BUG

程序员文章站 2022-03-09 21:16:52
...

ueditor1.4.3  .net 版 在IE8 下,多图片上传完成后,点击确认时报错,无法插入图片到编辑器中

 

原因是 ueditor.all.js 中的 24835 行

if (whitList[tagName].indexOf(key) === -1) {
                node.setAttr(key);
            }

判断报错,IE8 不支持这样的写法,

ueditor1.4.3 在IE8下的 BUG
            
    
    博客分类: ueditor  
var _index = -1;
            for (var i = 0; i < whitList[tagName].length ; i++) {
                if (whitList[tagName][i] == key)
                {
                    _index = i;
                    break;
                }
            }
            if (_index === -1) {
                node.setAttr(key);
            }
ueditor1.4.3 在IE8下的 BUG
            
    
    博客分类: ueditor