HKTicketing 快达网 tickets page

快达网 票价,数量,寄送方式

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         HKTicketing 快达网 tickets page
// @namespace    https://www.jwang0614.top/scripts
// @version      0.2
// @description  快达网 票价,数量,寄送方式
// @author       Olivia
// @match        https://premier.hkticketing.com/events/*/venues/*/performances/*/tickets
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    //第几档票价? Best Available Any Price Category 为0
    var price_category = 0;

    //几个人
    var people = 1;

    function timedRefresh(timeoutPeriod) {
        window.setTimeout("location.reload(true);",timeoutPeriod);
    }


    document.querySelectorAll(".seatarea li a")[price_category].click();


    document.querySelectorAll(".chooseTicketsPriceTypeQuantity select")[0].selectedIndex = people;
    document.querySelectorAll(".chooseTicketsPriceTypeQuantity select")[0].dispatchEvent(new Event('change'));



    document.querySelector("#selectDeliveryType").selectedIndex = 1;
    document.querySelector("#selectDeliveryType").dispatchEvent(new Event('change'));

    if (document.querySelector("#continueBar button").disabled == true) {
        timedRefresh(200);

    } else {
        document.querySelector("#continueBar button").click()
    }

    




})();