MediaWiki:Common.js
MediaWiki界面页面
更多操作
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
mw.hook('wikipage.content').add(function() {
var target = $('#mw-content-text');
if (target.length === 0) {
target = $('.mw-body-content');
}
if (target.length === 0) {
target = $('#content');
}
if (target.find('#global-footer-links').length) {
return;
}
var footerHtml = '<div id="global-footer-links" style="width:100%; margin-top:20px; display:flex; justify-content:space-between;">' +
'<div><a href="https://new.pvzhe.wiki/index.php?title=特殊:创建账户&returnto=首页">加入我们</a></div>' +
'<div><a href="https://www.pvzhe.com/new">前往官网以了解更多游戏信息</a></div>' +
'</div>';
target.append(footerHtml);
});