最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Rapidly Click an Element - Stack Overflow

programmeradmin2浏览0评论

I created this Tampermonkey script (I've changed some details but kept the most important parts) to automatically click and secure a spot as soon as one becomes available in a room on a website. It monitors the availability list and clicks on the highlighted spot when it appears. However, I am unable to detect a numeric change in the availability counter (I'm not sure how) — only when the spot becomes visually highlighted. Does anyone have a better approach or suggestions for improving how it detects and reacts to an available spot? I need to identify the change and click as quickly as possible.

div data-v-5222ec3e="" data-v-20568db0="" class="c_ChatRoom__list-item-counter" 0 spots available </div> (clickable element when zero spots available)

div data-v-5222ec3e="" data-v-20568db0="" class="c_ChatRoom__list-item-counter is-highlighted"> Available /div

(function() {
    'use strict';

    function startObserver() {
        const observedArea = document.querySelector(".c_ChatRoom__list-item-counter");
        
        if (!observedArea) {
            console.log("⚠️ Observed area not found! Retrying in 1s...");
            setTimeout(startObserver, 1000);
            return;
        }

        const observer = new MutationObserver(() => {
            const highlightedElement = observedArea.querySelector(".c_ChatRoom__list-item-counter.is-highlighted");

            if (highlightedElement) {
                console.log("
发布评论

评论列表(0)

  1. 暂无评论