无编辑摘要 |
无编辑摘要 |
||
第4行: | 第4行: | ||
// 维护开始时间戳(2025-04-05 03:00:00 UTC) | // 维护开始时间戳(2025-04-05 03:00:00 UTC) | ||
// MediaWiki:Common.js (安全增强版) | // MediaWiki:Common.js (安全增强版) | ||
'use strict'; | |||
'use strict'; | |||
const startTimestamp = 1743793200; | const startTimestamp = 1743793200; | ||
第23行: | 第24行: | ||
} | } | ||
// | // 更新页面显示 | ||
const timerElement = document.getElementById("maintenance-timer"); | |||
if (timerElement) { | |||
} | timerElement.textContent =`距离本赛季已维护${days}天${hours}时${minutes}分${seconds}秒`; | ||
} | |||
} | } | ||
// 首次加载更新 | |||
updateMaintenanceTimer(); | |||
// 每秒刷新 | |||
setInterval(updateMaintenanceTimer, 1000); |