Ipad + How to prevent the keyboard from popping up on jquery datepicker

后端 未结 4 1699
悲&欢浪女
悲&欢浪女 2021-01-02 01:19

I want to disable the keyboard popup from my Ipad so I do something like this, but it\'s not as my wish.

I have a text box:



        
4条回答
  •  误落风尘
    2021-01-02 02:10

    There is a option in HTML with let's you do this kind of thing:

    readonly="true"
    

    Add this to your input field element. It will sort of "disable" the input field, but still fires events when something is done with it (like clicking on it).


    Check out W3Schools Readonly Attribute for more information.

提交回复
热议问题