start.replace(/\-/gi,'+');
把字符串中全部的'-',變成'+';ide
var before='123-456-789';字符串
var after=start.replace(/\-/gi,'+');it
after='123+456+789';class