js中文逗号转英文实现

复制代码 代码如下:

  function changedouhao(str){

  str=str.replace(/,/ig,',');

  return str;

  }