1. 程式人生 > >input type="tel" 輸入框顯示密文

input type="tel" 輸入框顯示密文

為了在移動端實現密碼輸入框且調起的鍵盤為數字鍵盤,可以用-webkit-text-security:disc;text-security:disc;屬性來實現。

語法:
text-security: circle | disc | none | square;
-webkit-text-security: circle | disc | none | square;

none 無。
circle 圓圈。
disc 圓形。
square 正方形。

 

//當type="password"時,輸入框顯示為圓點,調起的是英文鍵盤,而不是我們想要的數字鍵盤
<input type="password" placeholder="password"/>


//當type="number" 或者 type="tel" 時,想要輸入框顯示圓點密文,同時調起數字鍵盤

 

<input type="tel" placeholder="tel" placeholder="tel" style="-webkit-text-security:disc;text-security:disc;"/>