js中文逗号转英文实现

(编辑:jimmy 日期: 2024/10/9 浏览:2)

复制代码 代码如下:
function changedouhao(str){
str=str.replace(/,/ig,',');
return str;
}