js中文逗号转英文实现


  本文标签:中文逗号,转英文

复制代码 代码如下:

function changedouhao(str){
str=str.replace(/,/ig,,);
return str;
}