1. 程式人生 > >h5 input調起數字鍵盤

h5 input調起數字鍵盤

ios:

type="number" 調起的數字鍵盤不是九宮格

iOS中,只有[0-9]\*才可以調起九宮格數字鍵盤,\d 無效

android:

type="number"以及下面兩種都能調起九宮數字鍵盤

<input type="number" pattern="\d">
<input type="number" pattern="[0-9]*">

number出現的小尾巴可以如下取消:

input[type=number]::-webkit-inner-spin-button,  
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none; 
        appearance: none; 
        margin: 0; 
    }