Replace回调函数参数的使用

var s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890';
function f(s, width){
var a=new RegExp('[\\s\\S]{1,'+(width || 4)+'}', 'g');
return s.replace(
a,
function(K,M,L,N){
console.log('===K===='+K);//第一个参数:匹配项
console.log('---M===='+M);//第一个参数:匹配项的起始index
console.log('---L===='+L);//整个字符串
console.log('---N===='+N);//undefined
return '^' + new Array(K.length).join(' ');
});
}
console.log(f(s, 4));

上一篇:Vue Element 时间戳转为年月日


下一篇:[js高手之路]html5 canvas动画教程 - 重力、摩擦力、加速、抛物线运动