摘要: 1.原生js写法 oninput = "this.value = this.value.replace(/[^\d]+/g,'')" 2.vue中写法 :onkeyup="playerId = playerId.replace(/[^\d]/g,'')" 亲测有效,不管是键盘输入还是复制粘贴都可以 阅读全文
posted @ 2021-08-17 16:01 DDjans 阅读(159) 评论(0) 推荐(0)