打开/关闭菜单
32
245
25
891
植物大战僵尸杂交版Wiki
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
本Wiki为杂交版民间Wiki,不对杂交版官方产生影响

MediaWiki:Common.js:修订间差异

MediaWiki界面页面
无编辑摘要
无编辑摘要
第1行: 第1行:
mw.hook('wikipage.content').add(function() {
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) {
     if (document.getElementById('global-footer-links')) {
         return;
         return;
     }
     }


     var footerHtml = '<div id="global-footer-links" style="width:100%; margin-top:20px; display:flex; justify-content:space-between;">' +
     var footerHtml = '<div id="global-footer-links" style="width:100%; margin-top:20px; padding:15px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; border-top:1px solid #ccc;">' +
         '<div><a href="https://new.pvzhe.wiki/index.php?title=特殊:创建账户&returnto=首页">加入我们</a></div>' +
         '<div><a href="https://new.pvzhe.wiki/index.php?title=特殊:创建账户&returnto=首页">加入我们</a></div>' +
         '<div><a href="https://www.pvzhe.com/new">前往官网以了解更多游戏信息</a></div>' +
         '<div><a href="https://www.pvzhe.com/new">前往官网以了解更多游戏信息</a></div>' +
         '</div>';
         '</div>';
    var $target = $('#mw-content-text, .mw-body-content, #content, .mw-parser-output');
      
      
     target.append(footerHtml);
 
     if (!$target.length) {
        $target = $('.mw-body, .content, main');
    }
   
 
    if ($target.length) {
        $target.append(footerHtml);
    }
});
});

2026年3月22日 (日) 05:20的版本

mw.hook('wikipage.content').add(function() {

    if (document.getElementById('global-footer-links')) {
        return;
    }

    var footerHtml = '<div id="global-footer-links" style="width:100%; margin-top:20px; padding:15px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; border-top:1px solid #ccc;">' +
        '<div><a href="https://new.pvzhe.wiki/index.php?title=特殊:创建账户&returnto=首页">加入我们</a></div>' +
        '<div><a href="https://www.pvzhe.com/new">前往官网以了解更多游戏信息</a></div>' +
        '</div>';
 
    var $target = $('#mw-content-text, .mw-body-content, #content, .mw-parser-output');
    

    if (!$target.length) {
        $target = $('.mw-body, .content, main');
    }
    

    if ($target.length) {
        $target.append(footerHtml);
    }
});