MediaWiki:Common.js
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
- Opera:按 Ctrl-F5。
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
// 检查当前域名是否为 "wiki.cic.cab"
if (window.location.hostname === "wiki.cic.cab") {
// 在页面底部添加备案信息
$(document).ready(function() {
$('body').append('<div style="text-align: center; padding: 10px; background-color: #f5f5f5;"><a href="https://beian.miit.gov.cn/" target="_blank">沪ICP备2021021416号-2</a></div>');
});
}
// 检查当前域名是否为 "wiki.ecustvr.top"
if (window.location.hostname === "wiki.ecustvr.top") {
// 在页面底部添加备案信息
$(document).ready(function() {
var beianInfo = '<p><a href="https://beian.miit.gov.cn/" target="_blank">苏ICP备2023000758号-2</a> | ' +
'<a class="nav-link" target="_blank" href="https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31012102000135" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">' +
'<img src="https://www.beian.gov.cn/img/ghs.png" style="float:left;"/>沪公网安备31012102000135号</a></p>';
$('body').append(beianInfo);
});
}