random_jump.html 329 B

1234567891011
  1. <script>
  2. const secondsOptions = [3000, 4000, 5000]; // 秒數
  3. // 隨機選擇一個秒數
  4. const randomTime = secondsOptions[Math.floor(Math.random() * secondsOptions.length)];
  5. // 設定跳轉
  6. setTimeout(() => {
  7. window.location.href = "https://hhh.com.tw/calculator_request/index.html";
  8. }, randomTime);
  9. </script>