Always visible jQuery UI DatePicker

后端 未结 3 1057
悲&欢浪女
悲&欢浪女 2020-12-05 06:40

How can I use jQuery UI to display an always-visible datepicker widget?

3条回答
  •  清歌不尽
    2020-12-05 06:48

    It's simple. Keep your jQuery code, but assign it to a

    instead of an input box.

    Date:
    

    A functional example lives at the jQuery UI webpage for the datepicker widget, and I've also included one below.

    $(function() {
      $("#datepicker").datepicker();
    });
    
    
    
    
    

提交回复
热议问题