马上就要到一年一度的双十一了,在双十一期间所有商家都会放出很多的优惠券供用户去领取。但是很多的用户表示一张一张领取的方式太麻烦了,有没有能够一件领取所有优惠券的方法,下面小编就给各位小伙伴详细的来讲一讲2020天猫双十一优惠卷一键领取的方法,一起来看看吧。
1、打开活动页面,如下图所示。
注:因为浏览器的不同可能操作会有一些不一样,所以其他浏览器请自行对应。
2、随便一个位置点击右键,然后选择“审查元素”
3、点击“控制台”,如果是英文的,就是点击“console”
4、把下面的代码粘贴到下图位置
位置:
代码:
// looping fetch
var once = function(){
// original author: https://v2ex.com/t/228164
(function(window, document) {
var interval = 800;
var closeDelay = 200;
var index = 0;
var couponLinks;
var getCoupon = function() {
if (index >= couponLinks.length) {
console.log(“领取完毕”);
window.once();
return;
}
var coponLink = couponLinks[index];
coponLink.click(); index++;
console.log(“领取 第” + index + ” 张”);
setTimeout(getCoupon, interval);
setTimeout(function() {
var close = document.querySelector(‘.mui-dialog-close’);
if (close != null) close.click();
}, closeDelay);
}
var _scrollTop = 0;
var _scrollStep = document.documentElement.clientHeight;
var _maxScrollTop = document.body.clientHeight – document.documentElement.clientHeight;
var autoScrollDown = setInterval(function() {
_scrollTop += _scrollStep;
if (_scrollTop > _maxScrollTop) {
clearInterval(autoScrollDown);
couponLinks = document.querySelectorAll(‘.mui-act-item-yhqbtn’);
console.log(“总共:” + couponLinks.length + “条张优惠券待领取…”);
getCoupon();
} else {
document.body.scrollTop = _scrollTop;
}
}, 500);
}) (window, document);
}
once();
5、输入以上代码之后敲一下回车,慢慢等待就行了。
注意:
因为优惠券非常的多,所以需要很长的时间去领取。
2024-11-09
2024-11-09
2024-11-07
2024-11-07
2024-11-07
2024-11-07