雙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

搞明白了這幾含義,寫個自動領券的代碼還不是分分鍾~

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM