阿里巴巴矢量图标库批量添加图标

https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js

icon图标自动添加下载  一:

控制台敲

var j=document.createElement('script');

    j.setAttribute("src", 'https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js');

    document.getElementsByTagName("head")[0].appendChild(j);

$("span[title='添加入库']").each(function(){

        $(this).delay(500).click();

        console.log($(this).parent().prev().children().eq(0).html());

    })




二:    


var span = document.querySelectorAll('.icon-cover');

for (var i = 0, len = span.length; i < len; i++) {

    console.log(span[i].querySelector('span').click());

}

你可能感兴趣的:(阿里巴巴矢量图标库批量添加图标)