User:Jimmy Xu/scripts/sig.js
外观
< User:Jimmy Xu | scripts
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
/**
* 清理用户签名样式
*/
$(function() {
var $sig = $('#bodyContent a[href^="/wiki/User:"], #bodyContent a[href^="/wiki/User_talk:"], #bodyContent a[href^="/w/index.php?title=User_talk:"]').not('.mw-userlink');
$sig.parent('span, font').add($sig.find('*')).not('[style*="display:none"]').removeAttr('style').removeAttr('color').removeAttr('size');
$sig.children('span, font').add($sig.find('*')).not('[style*="display:none"]').removeAttr('style').removeAttr('color').removeAttr('size');
$sig.nextAll('font').add($sig.nextAll().find('font')).removeAttr('color').removeAttr('size');
});