jQuery.Deferred exception: $(…).datepicker is not a function

前端 未结 1 1457
傲寒
傲寒 2021-02-08 04:57

thanks in advance.

I have already searched and implemented

 $(document).ready(function () {
     $(\"#ui-datepicker\").datepicker();
    });
         


        
1条回答
  •  再見小時候
    2021-02-08 05:24

    $(…).datepicker is not a function

    The Order of your script is wrong,

    Jquery Library file should be always on top, then jquery-ui. Keep

    modernizr-2.8.3.js

    after

    jquery-3.1.1.js and jquery-ui-1.12.1.js

    0 讨论(0)
提交回复
热议问题