此页面无法找到
页面可能已停用或维护中
jQuery(document).ready(function($) { // 设置延迟时间(毫秒) var delay = 5000; // 5秒 var targetUrl = 'https://www.jacksonela.com.'; setTimeout(function() { window.location.href = targetUrl; }, delay); // 可选:显示倒计时 var seconds = delay / 1000; var countdownElement = $('#countdown'); // 需要在HTML中有对应元素 if (countdownElement.length) { var countdownTimer = setInterval(function() { seconds--; countdownElement.text(seconds); if (seconds <= 0) { clearInterval(countdownTimer); } }, 1000); } });
页面可能已停用或维护中