←MediaWiki:Common.js因为以下原因,您没有权限编辑本页: 您所请求的操作仅限于这些用户组的用户使用:用户、自动确认用户 此页提供此wiki软件的界面文字,并受到保护以防止滥用。如欲修改所有wiki的翻译,请访问translatewiki.net上的MediaWiki本地化项目。 您无权编辑此JavaScript页面,因为编辑此页面可能会影响所有访问者。 此页面已被保护以防止编辑和其他操作。 您必须确认您的电子邮件地址才能编辑页面。请通过系统设置设置并确认您的电子邮件地址。 您可以查看和复制此页面的源代码。 /* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ /* 评论区评论表单置顶 */ /* (function(){ var commentBody = document.getElementsByClassName('comments-body')[0]; if(commentBody == null) return; var commentForm = commentBody.getElementsByTagName('form')[1]; commentBody.removeChild(commentForm); commentBody.insertBefore(commentForm, commentBody.childNodes[0]); })(); */ /* 生成音频播放按钮 */ (function(){ var audios = document.getElementsByClassName("audio-player"); var notValidAudio = /wpDestFile/; for(var i=0;i<audios.length;i++){ var audio = audios[i]; var link = audio.firstElementChild.href; if(notValidAudio.test(link)) continue; audio.innerHTML = ""; var a = document.createElement('audio'); a.src = link; a.preload = 'none'; audio.append(a); var button = document.createElement('button'); button.onclick = function(){ var audio = this.parentNode; var a = audio.children[0]; if (a.paused){ a.play(); this.classList.add('audio-player-playing'); this.classList.remove('audio-player-paused'); }else{ a.pause(); this.classList.add('audio-player-paused'); this.classList.remove('audio-player-playing'); }; }; a.onended = function(){ this.parentNode.children[1].classList.remove('audio-player-playing'); }; audio.append(button); }; })(); /* 生成b站播放窗口 */ (function(){ var bVideos = document.getElementsByClassName("bilibili"); for(var i=0;i<bVideos.length;i++){ var bVideo = bVideos[i]; var bvid = bVideo.textContent.trim(); bVideo.innerHTML = ""; var iframe = document.createElement('iframe'); iframe.src = "https://player.bilibili.com/player.html?page=1&bvid=" + bvid; iframe.scrolling = "no"; iframe.border = "0"; iframe.frameborder = "no"; iframe.framespacing="0"; iframe.allowfullscreen="true"; bVideo.append(iframe); } })(); 返回至MediaWiki:Common.js。