首页 > 网站 > WEB开发 > 正文

bootstrap-datetimepicker 火狐浏览器报错

2024-04-27 15:07:31
字体:
来源:转载
供稿:网友

使用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浏览器无法使用


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表