Make Input Type=“Password” Use Number Pad on Mobile Devices

前端 未结 7 1435
轮回少年
轮回少年 2020-11-29 23:39

On my site designed for mobile devices I have an input field that is used for PIN numbers. I want the text to be hidden as it is entered and I want the number pad to pop up

7条回答
  •  遥遥无期
    2020-11-30 00:14

    Some browsers (iOS) recognize the specific pattern attribute value of [0-9]* as triggering numeric keypad.

    The HTML 5.1 draft contains the inputmode attribute, which has been designed to address the specific issue of input mode (like key pad) selection, but it has not been implemented yet.

    You could use it for the future, though – even though the current HTML 5.1 does not allow it for type=password, for some odd reason.

    
    

提交回复
热议问题