var s="a2b3c4d5e678f12g";var a=s.split(/\d/);alert(a);
为什么会返回a,b,c,d,e,f,g
\d 匹配数字
s.split(/\d/) 返回s中除去数字的部分