码迷,mamicode.com
首页 > 其他好文 > 详细

IE浏览器不兼容 Array.from 解决方法

时间:2021-03-09 13:25:13      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   cti   asc   load   style   code   info   rom   his   

问题描述:

IE 浏览器,不是特别兼容ES6 代码,比如:Array.from 在ie浏览器中,直接报错

技术图片

 

 解决办法:

找到代码,直接在代码上面加上即可

 

 if(!Array.from){
        Array.from = function (el) {
            return Array.apply(this, el);
        }
    } 

 

  

 

IE浏览器不兼容 Array.from 解决方法

标签:ret   cti   asc   load   style   code   info   rom   his   

原文地址:https://www.cnblogs.com/qinyuanchun/p/14500975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!