如何修复 Uncaught TypeError: g is undefined on bootstrap datepicker

How to fix Uncaught TypeError: g is undefined on bootstrap datepicker

提问人:Bertho Joris 提问时间:8/25/2023 最后编辑:Bertho Joris 更新时间:8/25/2023 访问量:66

问:

如何修复引导日期选择器上的错误?我尝试使用bootstrap-datepicker lib制作日期选择器,但我卡住了这个错误Uncaught TypeError: g is undefined

Errot

让我感到困惑的是,在相同环境下的其他项目中,一切正常,没有问题。只有我在这个项目上发现了错误,我不知道为什么

我已经导入了一个css

<link href="{{ asset('template/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css') }}" rel="stylesheet">

和 js lib

<script src="{{ asset('template/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js') }}"></script>

和我的页面js

$(document).ready(function() {
    $('#periode_kontrak_start').datepicker({
        autoclose: true,
        todayHighlight: true,
        format: 'yyyy-mm-dd',
    });
    $("html, body").animate({ scrollTop: $(document).height() - $(window).height() });
});

$(document).on('change keyup keydown', '#periode_kontrak_start', function() {
    //
}).on('changeDate', function(selected) {
    var minDate = new Date(selected.date.valueOf());
    $('#periode_kontrak_end').datepicker('setStartDate', minDate);
});

但是当我尝试时,总是会出现错误。如何修复此错误?

javascript jquery laravel twitter-bootstrap 日期选择器

评论

0赞 francisco 8/25/2023
在线上有那些未定义的问题

答: 暂无答案