MediaWiki:Common.js
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
- Opera:按 Ctrl-F5。
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */ const html = $('html'); const themeSwitch = $('a:contains(切换到旧外观)'); if ((localStorage.getItem('theme') || 'true') == 'true') { html.addClass('theme'); themeSwitch.text('切换到旧主题').attr('title', '更改您的设置来使用旧主题。'); } else { themeSwitch.text('切换到新主题').attr('title', '更改您的设置来使用新主题。'); } themeSwitch.attr('href', 'javascript:switchTheme();'); function switchTheme() { if ((localStorage.getItem('theme') || 'true') == 'true') { html.removeClass('theme'); localStorage.setItem('theme', 'false'); themeSwitch.text('切换到新主题').attr('title', '更改您的设置来使用新主题。'); } else { html.addClass('theme'); localStorage.setItem('theme', 'true'); themeSwitch.text('切换到旧主题').attr('title', '更改您的设置来使用旧主题。'); } } $(function() { const RarityIndex = { Common: 0, Unusual: 1, Rare: 2, Epic: 3, Legendary: 4, Mythic: 5, Ultimate: 6, Supreme: 7, Aracont: 8 }; $('.portable-infobox').each(function() { const initialRarity = $(this).find('.initial-rarity').text(); const index = RarityIndex[initialRarity] || 0; const tabs = $(this).find('.pi-section-tab'); tabs.slice(0, index).remove(); const tab = $(this).find('.pi-section-tab:first'); const id = setInterval(function () { tab.trigger('click'); if (tab.hasClass('pi-section-active')) { clearInterval(id); } }, 0); }); }); importScript('MediaWiki:Icon.js');