打开/关闭搜索
搜索
打开/关闭菜单
32
301
27
954
植物大战僵尸杂交版Wiki
导航
首页
最近更改
随机页面
MediaWiki帮助
特殊页面
上传文件
打开/关闭外观设置菜单
notifications
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
创建账号
登录
本Wiki为杂交版民间Wiki,不对杂交版官方产生影响
Wiki制作组招募群号:633922116
查看“︁MediaWiki:Common.js”︁的源代码
MediaWiki界面页面
查看
阅读
查看源代码
查看历史
associated-pages
系统消息
讨论
更多操作
←
MediaWiki:Common.js
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
此页面为本wiki上的软件提供界面文本,并受到保护以防止滥用。 如欲修改所有wiki的翻译,请访问
translatewiki.net
上的MediaWiki本地化项目。
您无权编辑此JavaScript页面,因为编辑此页面可能会影响所有访问者。
您可以查看和复制此页面的源代码。
// 确保只执行一次 if (window.globalFooterAdded) return; window.globalFooterAdded = true; // 延迟执行,确保 DOM 完全加载 setTimeout(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 possibleTargets = [ document.querySelector('#footer'), document.querySelector('#mw-footer'), document.querySelector('footer'), document.querySelector('.footer'), document.querySelector('#mw-content-text')?.parentNode, document.querySelector('.mw-body-content')?.parentNode ]; // 找到第一个存在的元素 var target = null; for (var i = 0; i < possibleTargets.length; i++) { if (possibleTargets[i]) { target = possibleTargets[i]; break; } } // 如果找到目标,在它之前插入 if (target) { target.insertAdjacentHTML('beforebegin', footerHtml); } }, 500);
返回
MediaWiki:Common.js
。
查看“︁MediaWiki:Common.js”︁的源代码
MediaWiki界面页面