js实现input框中输入的中文逗号自动转换为英文逗号
2021-04-23 本文已影响0人
tangzhentian
https://www.cnblogs.com/ZhaoWeiNotes/p/13640127.html
<input type="text" placeholder="" onafterpaste="this.value=this.value.replace(/,/g,',')" onkeyup="this.value=this.value.replace(/,/g,',')">