原文:el-input只能輸入正整數

onKeypress return d .test String.fromCharCode event.keyCode event.which event.which ...

2022-02-23 09:59 0 1295 推薦指數:

查看詳情

el-input限制只能輸入數字

輸入框中限制通常有三種處理方法: 第一種:設置type屬性(不推薦) 設置type屬性為number,text等等,此方法輸入框的后面會有不必要樣式出現 第二種:在屬性中添加onkeyup或者oninput進行正則判斷 onkeyup,oninput,onchange ...

Thu Aug 12 18:50:00 CST 2021 0 157
el-input限制只能輸入數字

<el-input @blur="setValue" v-model="ruleForm.name" onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"></el-input>   如果表單加入 ...

Fri Feb 18 01:17:00 CST 2022 0 2128
 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM