“User:机智的小鱼君/common.js”的版本间的差异
来自小鱼君和他的朋友们
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
第17行: | 第17行: | ||
className: 'btn btn-danger', | className: 'btn btn-danger', | ||
method: function (a, modal) { modal.close() } | method: function (a, modal) { modal.close() } | ||
+ | }, { | ||
+ | label: '编辑本页面', | ||
+ | className: 'btn', | ||
+ | method: function () { InPageEdit.quickEdit() } | ||
}, { | }, { | ||
label: '在Fandom查看这个页面', | label: '在Fandom查看这个页面', |
2020年10月5日 (一) 16:37的版本
// mw.loader.load('https://cdn.jsdelivr.net/npm/[email protected]/dist/InPageEdit.min.js'); /** Get Fandom Code **/ $(function () { var pageName = mw.config.get('wgPageName'); $('#p-userpagetools ul').append( $('<li>').append( $('<a>').attr('href', 'javascript:void(0)').text('查看Fandom代码').click(function () { ssi_modal.show({ content: $('<div>').append( $('<textarea>', { style: 'width:100%; min-height:350px; height: 70vh;', readonly: true, val: 'Loading...' }) ), center: true, title: 'Fandom上的' + pageName, buttons: [{ label: '关闭', className: 'btn btn-danger', method: function (a, modal) { modal.close() } }, { label: '编辑本页面', className: 'btn', method: function () { InPageEdit.quickEdit() } }, { label: '在Fandom查看这个页面', className: 'btn btn-primary', method: function () { window.open('https://epbureau.fandom.com/wiki/' + pageName) } }], onShow: function (modal) { var $modal = $('#' + modal.modalId); $.ajax({ url: 'https://epbureau.fandom.com/api.php', dataType: 'jsonp', type: 'post', data: { page: pageName, action: 'parse', prop: 'wikitext', format: 'json' }, success: function (result) { var wikitext; if (result.parse !== undefined) { wikitext = result.parse.wikitext['*']; } else { wikitext = '<!-- 错误:无法读取Fandom上的同名页面。 -->' } $modal.find('textarea').val(wikitext); } }); } }); }) ) ); });