美文网首页
关于forEach(item =>{})

关于forEach(item =>{})

作者: Yluozi | 来源:发表于2021-03-08 10:44 被阅读0次

    '=>'es6写法,不兼容ie11

        // dataReload.forEach(it=>{
        //     if(it.children.length>0){
        //         ifHaveChildren=1;
        //         return;
        //     }
        // });
    

    修改:兼容写法

        dataReload.forEach(function (it) {
            if (it.children.length > 0) {
                ifHaveChildren = 1;
                return;
            }
        })
    

    相关文章

      网友评论

          本文标题:关于forEach(item =>{})

          本文链接:https://www.haomeiwen.com/subject/njvvqltx.html