今天是2025年12月15日 第51周 星期一
代人,时大变了。
我们生活在大地上,但我们的梦想超越天空。
“User:白龙/common.js”的版本间的差异
< User:白龙
跳到导航
跳到搜索
标签:移动网页编辑 移动版编辑 |
标签:移动网页编辑 移动版编辑 |
||
| 第1行: | 第1行: | ||
| − | + | var reg = /(?:([0-9A-Za-z_])([\u4e00-\u9fa5]))|(?:([\u4e00-\u9fa5])([0-9A-Za-z_]))/g; | |
| − | + | var result; | |
| − | + | $('.mw-parser-output).each(function () { | |
| − | + | while( match = reg.exec(targetText) !== null ) { | |
| − | + | this = this.replace(reg, "$1$3 $2$4"); | |
| + | } | ||
| + | }); | ||
2020年8月4日 (二) 03:50的版本
var reg = /(?:([0-9A-Za-z_])([\u4e00-\u9fa5]))|(?:([\u4e00-\u9fa5])([0-9A-Za-z_]))/g;
var result;
$('.mw-parser-output).each(function () {
while( match = reg.exec(targetText) !== null ) {
this = this.replace(reg, "$1$3 $2$4");
}
});