大麦抢票-确认

辅助购买大麦网演唱会门票

安装此脚本?
作者推荐脚本

您可能也喜欢大麦抢票-选场次票价人数

安装此脚本
  1. // ==UserScript==
  2. // @name 大麦抢票-确认
  3. // @namespace https://www.jwang0614.top/scripts
  4. // @version 0.9.0
  5. // @description 辅助购买大麦网演唱会门票
  6. // @author Olivia Wang
  7. // @match https://buy.damai.cn/orderConfirm*
  8. // @grant none
  9. // @require https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js
  10. // ==/UserScript==
  11.  
  12.  
  13. var test_url = "https://buy.damai.cn/orderConfirm?exParams=%7B%22damai%22%3A%221%22%2C%22channel%22%3A%22damai_app%22%2C%22umpChannel%22%3A%2210002%22%2C%22atomSplit%22%3A%221%22%2C%22serviceVersion%22%3A%221.8.5%22%7D&buyParam=600583263497_1_4192587404863&buyNow=true&spm=a2oeg.project.projectinfo.dbuy"
  14. var timer = null;
  15. var current_url = null;
  16.  
  17.  
  18. var max_time = 5000;
  19. var current_time = 500;
  20.  
  21. $(document).ready(function(){
  22. window.current_url = window.location.href;
  23. if($(".error-msg").length > 0) {
  24. window.location.reload();
  25. // console.log("error");
  26. } else {
  27. setTimeout(fill_form, 300);
  28.  
  29. }
  30.  
  31. });
  32.  
  33.  
  34.  
  35. function fill_form() {
  36. var input = document.querySelector(".delivery-email-form input");
  37. var email = "";
  38.  
  39. if (input) {
  40.  
  41. input.value=email;
  42.  
  43. }
  44.  
  45. var buyer_number = parseInt($(".ticket-buyer-title em").text());
  46. console.log(buyer_number);
  47. var buyer_list = $(".buyer-list-item input");
  48. for(var i=0; i < buyer_number; i++) {
  49. console.log(buyer_list[i]);
  50. buyer_list[i].click();
  51. }
  52.  
  53. $(".submit-wrapper button").click();
  54. setTimeout(check_alert, 500);
  55.  
  56. }
  57.  
  58.  
  59. function check_alert() {
  60. var alerts = $(".next-dialog-alert");
  61. if(alerts.length > 0 || window.current_time >= window.max_time) {
  62. window.location.reload();
  63. } else {
  64. window.current_time = window.current_time + 500;
  65. setTimeout(check_alert, 500);
  66. }
  67. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址