How do you disable the datepicker in Microsoft Edge?

后端 未结 4 1666
走了就别回头了
走了就别回头了 2021-02-08 02:19

I have several inputs with type=\"date\" and want to disable the default date picker in Microsoft Edge since I\'m using jQuery\'s datepicker. How do I disable this using CSS or

4条回答
  •  遥遥无期
    2021-02-08 03:09

    The input type must be text and not date. This...

    
    

    Should be

    
    

    Otherwise Chrome and Edge will add a datepicker. Instead use a class or id to identify it as datepicker and do something like $(".datepicker").datepicker();

提交回复
热议问题