• 站内
  • 全网

备战双11:天猫商城 双11优惠券 自动领取(附教程和操作步骤)

2015年10月14日

天猫商城双11促销活动目前正在进行火爆预热中。其中有大量优惠券可以领取。这个页面是天猫双11预售专题,里面有123张优惠券可以领取。网友“爱上你不容易”提供一个可以批量领券的办法。

1、用chrome内核的浏览器,如谷歌、360等浏览器,点击这个链接,打开活动页面。

2、在页面按F12或者右键---审核元素,点击console。

 

 

3、把如下代码复制到console里,按回车键执行就可以了。

 

(function(window, document, undefined) {

var interval = 800;

var closeDelay = 200;

var index = 0;

var couponLinks;

var getCoupon = function() {

if (index >= couponLinks.length) {

console.log("领取完毕");

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);

你可能还喜欢
    买什么便宜是一个中立的,致力于帮助广大网友买到更有性价比网购产品的分享平台,每天为网友们提供最受追捧 最具性价比 最大幅降价潮流新品资讯。我们的信息大部分来自于网友爆料,如果您发现了优质的产品或好的价格,不妨给我们爆料(谢绝商家)。点此爆料
    已有 0 条评论
    0
    买什么便宜
    回到顶部