Disable writing in input type number HTML5

后端 未结 5 1254
青春惊慌失措
青春惊慌失措 2020-12-16 14:57

I want to disable writing into a field of type number, for avoiding strings data, and write just numbers, so how to enable scroll bars only ?

5条回答
  •  情书的邮戳
    2020-12-16 15:21

    Firstly, your markup is incorrect. The form tags must surround the input tag:

    
        
    

    Secondly, if you are using HTML5 and want a number input, you can use this:

    
    

    (from W3Schools)

    Be aware that current browser implementations of the "number" input vary.

    You then reference the value using Javascript, or have it posted using the form.

提交回复
热议问题