MediaWiki:Gadget-clock.js:修订历史

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2024年8月20日 (星期二)

2024年8月16日 (星期五)

  • 当前之前 17:232024年8月16日 (五) 17:23Flandre 留言 贡献 1,140字节 +34 无编辑摘要
  • 当前之前 17:162024年8月16日 (五) 17:16Flandre 留言 贡献 1,106字节 +1,106 创建页面,内容为“(function () { function updateClock() { var now = new Date(); var hours = now.getHours(); var minutes = now.getMinutes(); var seconds = now.getSeconds(); // Format time as HH:MM:SS hours = hours < 10 ? '0' + hours : hours; minutes = minutes < 10 ? '0' + minutes : minutes; seconds = seconds < 10 ? '0' + seconds : seconds; // Update the clock element var clockElement = document.…”