注意:在保存之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Internet Explorer:按住Ctrl的同时单击刷新,或按Ctrl-F5
- Opera:前往菜单 → 设置(Mac为Opera → 选项),然后隐私和安全 → 清除浏览数据 → 缓存的图片和文件。
/* Wikiplus */
mw.loader.load('https://wikiplus-app.com/Main.js');
/* [[Wikipedia:Tools/Navigation popups]] */
mw.loader.load('https://zh.wikipedia.org/w/load.php?modules=ext.gadget.Navigation_popups');
//syntax highlighter
mw.loader.load('//www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-DotsSyntaxHighlighter.js&action=raw&ctype=text/javascript');
(function($) {
function bytecount(text) {
text = text.replace(/[\u0000-\u007F]/g, '.');
text = text.replace(/[\u0080-\u07FF\uD800-\uDFFF]/g, '..');
text = text.replace(/[\u0800-\uD7FF\uE000-\uFFFF]/g, '...');
return text.length;
};
function cjkcount(text) {
text = text.replace(/\./g, '');
text = text.replace(/[\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u3005\u3007\u3021-\u3029\u3038-\u303B\u3400-\u4DB5\u4E00-\u9FCC\uF900-\uFA6D\uFA70-\uFAD9]|[\uD840-\uD868][\uDC00-\uDFFF]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|[\uD86A-\uD86C][\uDC00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D]|\uD87E[\uDC00-\uDE1D]/g, '.');
text = text.replace(/[^\.]/g, '');
return text.length;
};
function getwcbytext(text) {
return text.length + ' character(s) (' + cjkcount(text) + ' CJK)<br />' +
bytecount(text) + ' byte(s) in <a href="' + mw.config.get('wgScript') + '?title=UTF-8">UTF-8</a> encoding';
};
function getsel() {
if (!window.getSelection) return '';
return getSelection().toString();
};
$(document).mouseup(dowc).keyup(dowc);
})(jQuery);