美文网首页
js实现input框中输入的中文逗号自动转换为英文逗号

js实现input框中输入的中文逗号自动转换为英文逗号

作者: tangzhentian | 来源:发表于2021-04-23 11:50 被阅读0次

    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,',')">
    

    相关文章

      网友评论

          本文标题:js实现input框中输入的中文逗号自动转换为英文逗号

          本文链接:https://www.haomeiwen.com/subject/redcrltx.html