1. 程式人生 > 程式設計 >vue 限制input只能輸入正數的操作

vue 限制input只能輸入正數的操作

在某些專案中 input 框只能輸入數字,可以用以下辦法:

先在標籤上繫結上 @input 事件來監聽標籤的值變化,通過正則來改變輸入的值。

 <input
  class="keep_input"
  v-number-only
  style="width:35px"
  v-model="scope.row.fileOrder"
  @input="scope.row.fileOrder = Number($event.target.value.replace(/\D+/,''))"
 />

第二部封裝個自定義指令放在標籤上!

 directives: {
  numberOnly: {
   bind: function(el) {
    el.handler = function() {
     el.value = Number(el.value.replace(/\D+/,''))
    }
    el.addEventListener('input',el.handler)
   },unbind: function(el) {
    el.removeEventListener('input',el.handler)
   }
  }
 },

接下來就可以去頁面看效果了,只能輸入數字且只是正數!

附上 element 的 input 樣式程式碼

 .keep_input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  outline: 0;
  padding: 0 15px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645,0.045,0.355,1);
  transition: border-color 0.2s cubic-bezier(0.645,1);
  height: 30px;
  line-height: 30px;
  text-align: left;
 }
 .keep_input:focus {
  border-color: #54a6de;
  outline: 0;
 }

補充知識:記錄el-input type=number限制長度el-input使用

如下所示:

<el-input type="number"
 oninput="if(value.length>10)value=value.slice(0,10)"
 @keyup.enter.native="query()"
 onKeypress="return(/[\d\.]/.test(String.fromCharCode(event.keyCode)))"
 :max="99999999">
 </el-input>

oninput 是個自定義事件 在事件裡面獲取輸入的數字長度,來進行判斷如果大於規定長度就進行剪下。

keyup.enter.native 是個鍵盤迴車事件,當按下Enter鍵時觸發query()事件。

max為輸入框的最大值,如果input的type=number那麼輸入框內是輸入不了字元的。

number框 解決輸入e的問題

主要原因是:e在數學上代表的是無理數,是一個無限不迴圈的小數,其值約為2.7182818284,所以在輸入e的時候,輸入框會把e當成一個數字看待。

可以採用下面的方式來避免這個BUG,在input標籤中新增如下屬性:

onKeypress=“return(/[\d.]/.test(String.fromCharCode(event.keyCode)))”

<el-input placeholder="請輸入密碼" v-model="input" :show-password="true"></el-input>

show-password 加上這個屬性輸入字元進行隱藏一般用於密碼框使用

記錄問題!

以上這篇vue 限制input只能輸入正數的操作就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。