MediaWiki:Common.js:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 标签:手工回退 |
无编辑摘要 |
||
第7行: | 第7行: | ||
} | } | ||
}); | }); | ||
setInterval(() => { | |||
fetch('/online.php') | |||
.then(res => res.text()) | |||
.then(n => { | |||
document.getElementById("online-count").textContent = n; | |||
}); | |||
}, 5000); |
2025年5月11日 (日) 10:50的版本
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
$(function () {
// 只在条目页面生效,不影响首页/编辑页等
if (mw.config.get("wgNamespaceNumber") === 0) {
$('<a href="/index.php/首页" id="return-home-button">← 返回首页</a>')
.appendTo('body');
}
});
setInterval(() => {
fetch('/online.php')
.then(res => res.text())
.then(n => {
document.getElementById("online-count").textContent = n;
});
}, 5000);
👥 当前在线人数:66