str.replace(reg,function($0,$1,$2...,index,str){ }); $0: 匹配模式的字符串$1...: 匹配模式子表达式的字符串,0个或多个,个数取决于子表达式的个数index: $0在原字符串中的位置str: 原字符串 利用此可以写出简洁的方法 例如: 1. format方法 function format(s,arg0){ var args = arguments; return s.replace(/\{(\d+)\}/,function($0,$1