JS限制輸入框只能輸入數字

限制輸入框只能輸入數字(使用正則) let reg=/[/D]/g; input.oninput=function(){ this.value=this.value.replace(reg,''); } /D: 匹配數字 /d: 匹配除數字之外的任何
相關文章
相關標籤/搜索