Created
July 23, 2019 01:53
-
-
Save dongfg/e7d993e924596ac087b83d8ec8aca656 to your computer and use it in GitHub Desktop.
iconfont 批量添加购物车
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 在图标集合页面控制台执行,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