$(…).datepicker is not a function

我的程序不知什么原因,会报 Uncaught TypeError: $(…).datetimepicker is not a function错误信息
找了好久不知道是什么原因,最终百度后发现是jquery引用中引用了不同的版本所致。最后统一使用一个版本后,问题解决。

   function InitDatePicker() {
        $('#datepickerFrom').datepicker({
            language: "zh-CN",
            todayHighlight: true,
            format: 'yyyy-mm-dd',
            autoclose: true,
            //startView: 'year',
            //maxViewMode: 'years',
            //minViewMode: 'months',
            clearBtn: true,
            endDate: new Date()
        })
}

 

你可能感兴趣的:(WEB前端)