bootstrap-datetimepicker 火狐浏览器报错

    xiaoxiao2021-03-26  27

    使用bootstrap-datetimepicker日期选择插件时发现在火狐浏览器下报错: 源码版: ref is undefined 压缩版: m is undefined

    打开未压缩的版本,定位到58行处

    formattedStr = ((ref = date.split('(')[1]) !== null ? ref.slice(0, -1) : 0) || date.split(' ');

    改为

    formattedStr = ((ref = date.split('(')[1]) != null ? ref.slice(0, -1) : 0) || date.split(' ');

    就可以了。

    转自bootstrap-datetimepicker 火狐Firefox浏览器无法使用

    转载请注明原文地址: https://ju.6miu.com/read-663906.html

    最新回复(0)