From f33f2b7e398691e5d9b21787f4af665c6c69da11 Mon Sep 17 00:00:00 2001 From: 8ga Date: Tue, 11 Nov 2025 09:43:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E9=A1=B5=E5=88=87=E6=8D=A2=E5=88=86=E7=B1=BB.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 导航页切换分类.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/导航页切换分类.js b/导航页切换分类.js index 70efff6..8f40eed 100644 --- a/导航页切换分类.js +++ b/导航页切换分类.js @@ -13,7 +13,7 @@ 'use strict'; window.addEventListener('load', function () { - setTimeout(init, 1500); + setTimeout(init, 1000); function init() { const search_bar = document.querySelector("#search-bar"); if (search_bar) { @@ -36,7 +36,6 @@ const targetSpan = spans[currentIndex]; if (targetSpan) { targetSpan.click(); - console.log(`已点击第 ${currentIndex} 个 span`); } } });