How do I implement and use eyecon's bootstrap-datepicker?

后端 未结 1 1454
既然无缘
既然无缘 2020-12-31 06:35

I visited Eyecon and downloaded the datepicker. I got three folders. \'css\', \'js\' and \'less\'. I have included the bootstrap-datepicker.js and the latest jquery.js and l

相关标签:
1条回答
  • 2020-12-31 07:15

    $('element').datepicker(); where element is some class, id etc.

    http://jsfiddle.net/6kk3k/1/

    HTML

    <input type="text" class="datepicker">
    

    jQuery

    $('.datepicker').datepicker();
    
    0 讨论(0)
提交回复
热议问题