首页
随机
附近
登录
设置
关于PlantsVsZombies Mixed
免责声明
PlantsVsZombies Mixed
搜索
查看“MediaWiki:Mobile.js”的源代码
←
MediaWiki:Mobile.js
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */ // Wait for the DOM to be ready document.addEventListener("DOMContentLoaded", function() { // Check if we are in mobile view if (mw.config.get('skin') === 'minerva') { // Create a new link var newLink = document.createElement('a'); newLink.href = '/wiki/Special:MyPage'; newLink.textContent = 'My Page'; // Create a new list item var newListItem = document.createElement('li'); newListItem.appendChild(newLink); // Add the list item to the menu var menu = document.getElementById('p-navigation').getElementsByTagName('ul')[0]; menu.appendChild(newListItem); } });
返回
MediaWiki:Mobile.js
。