User:WhitePhosphorus/js/cutMyHand.js
外观
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
(function($, mw) {
'use strict';
if (mw.config.get('wgCanonicalSpecialPageName') !== 'Block') {
return;
}
$('.mw-htmlform-submit-buttons .oo-ui-buttonElement-button').click(function(e) {
if ($('#mw-input-wpReason-select .oo-ui-labelElement-label').html() === '其他' &&
$('input[name="wpReason-other"]').val() === '') {
alert('你的封禁理由呢?又手滑了吧?');
e.preventDefault();
}
});
})(jQuery, mediaWiki);