js中文逗号转英文实现

网络编程 发布日期:2024/10/9 浏览次数:1

正在浏览:js中文逗号转英文实现
复制代码 代码如下:
function changedouhao(str){
str=str.replace(/,/ig,',');
return str;
}