美文网首页Java开发
JS 循环遍历刷新

JS 循环遍历刷新

作者: _浅墨_ | 来源:发表于2021-05-28 15:29 被阅读0次
    let flag = true
     let timmer = setInterval(()=> {
        if(!flag){
            // console.log('end~~~');
            clearInterval(timmer)
        }
        else {
            let width =  $(".markdown-body img").css('width')
            // console.log(width)
            if(width !==imgWidth) {
                $(".markdown-body img").css("width",imgWidth);
                flag = false;
            }
        }
    },300)
    

    相关文章

      网友评论

        本文标题:JS 循环遍历刷新

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