Skip to content

Instantly share code, notes, and snippets.

@dongfg
Created July 23, 2019 01:53
Show Gist options
  • Save dongfg/e7d993e924596ac087b83d8ec8aca656 to your computer and use it in GitHub Desktop.
Save dongfg/e7d993e924596ac087b83d8ec8aca656 to your computer and use it in GitHub Desktop.
iconfont 批量添加购物车
// 在图标集合页面控制台执行,eg. https://www.iconfont.cn/collections/detail?cid=15699
var event = new MouseEvent('click', {
'view': window,
'bubbles': true,
'cancelable': true
});
var list = $("#magix_vf_main > div.wrap > div.page-collection-detail-wrap > div.collection-detail > ul").children;
[].forEach.call(list, function(el) {
el.children[2].children[0].dispatchEvent(event);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment