中文逗号替换为英文逗号
<input type="text" name="txt" onkeyup="javascript:this.value=this.value.replace(/,/ig,',');"/ >
英文逗号替换为中文逗号
<input type="text" name="txt" onkeyup='javascript:this.value=this.value.replace(",",",");' />
中文逗号替换为英文逗号
<input type="text" name="txt" onkeyup="javascript:this.value=this.value.replace(/,/ig,',');"/ >
英文逗号替换为中文逗号
<input type="text" name="txt" onkeyup='javascript:this.value=this.value.replace(",",",");' />