vue input only allows the input digital

template:

<input 
    type="text"
    v-model="pageIndex"
    @keyup="inputChange"
>

 

JS:

Methods: { 
    inputChange () { // input box to change the value of 
        the this .pageIndex = the this .pageIndex.replace (/ [^ \ D] / G, '' ) 
    } 
}

 

Other input events:

@change

@keyup

@keydown

@bul is

 

Guess you like

Origin www.cnblogs.com/muou2125/p/11691989.html