双11,自动领取优惠券 js 代码

http://www.zhihu.com/question/36426051/answer/67690322

本来我不熟悉 js,正好研究一下

 

 1 (function(window, document) {
 2     var interval = 800;
 3     var closeDelay = 200;
 4     var index = 0;
 5     var couponLinks;
 6     var getCoupon = function() {
 7         if (index >= couponLinks.length) {
 8             console.log("领取完毕");
 9             return;
10         }
11         var coponLink = couponLinks[index];
12         coponLink.click();
13         index++;
14         console.log("领取 第" + index + " 张");
15         setTimeout(getCoupon, interval);
16         setTimeout(function() {
17             var close = document.querySelector('.mui-dialog-close');
18             if (close != null) close.click();
19         }, closeDelay);
20     }
21 
22     var _scrollTop = 0;
23     var _scrollStep = document.documentElement.clientHeight;
24     var _maxScrollTop = document.body.clientHeight - _scrollStep;
25 
26     var autoScrollDown = setInterval(function() {
27         _scrollTop += _scrollStep;
28         if (_scrollTop <= _maxScrollTop) {
29             document.body.scrollTop = _scrollTop;
30             return;
31         }
32         clearInterval(autoScrollDown);
33 
34         couponLinks = document.querySelectorAll('.mui-act-item-yhqbtn');
35         console.log("总共:" + couponLinks.length + "条张优惠券待领取…");
36         getCoupon();
37     }, 500);
38 }) (window, document);

 

 

搜一下关键的几个函数和变量,就很容易理解了。

document.querySelector
document.querySelectorAll
document.documentElement.clientHeight
document.body.clientHeight
document.body.scrollTop
setInterval
setTimeout

搞明白了这几含义,写个自动领券的代码还不是分分钟~

 

转载于:https://www.cnblogs.com/hangj/p/4884127.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值