日期插件 bootstrap-datetimepicker 在火狐下出现一条报错信息:TypeError: (intermediate value).toString(…).split(…)[1] is undefined
这条错误必然出现,难道没有在 Firefox 下进行测试。
在 Firefox 下查看项目 demo (http://www.malot.fr/bootstrap-datetimepicker/demo.php)可以正常运行,但这个 demo.php 使用的是 2013-3-2 的 datetimepicker,github 项目(https://github.com/smalot/bootstrap-datetimepicker/releases)已经发布到 2017-3-3,这个最新的版本(以及最近的一些版本)在 Firefox 下测试不完善,计算 defaultTimeZone 时虽然没有出错,但给出的结果也不正确。
源代码如下,运行环境 Firefox 51.0.1(32位)
this.defaultTimeZone = (new Date).toString().split('(')[1].slice(0, -1); this.timezone = options.timezone || this.defaultTimeZone; // 2.4.4 改进版本 this.timezone = options.timezone || timeZoneAbbreviation(); function timeZoneAbbreviation() { var abbreviation, date, formattedStr, i, len, matchedStrings, ref, str; date = (new Date()).toString(); formattedStr = ((ref = date.split('(')[1]) != null "background-color: #808080">2.4.4 改进版本使用的 timeZoneAbbreviation 函数在 Firefox 下返回 true对 timeZoneAbbreviation 使用的三元表达式依次简化
((abbreviation = (ref = str.match(/\b[A-Z]+\b/)) !== null) "text-align: center">解决方案
将 date toString 最后一个空格之后的字符串作为 TimeZone。
// this.defaultTimeZone = (new Date).toString().split('(')[1].slice(0, -1); this.defaultTimeZone = (new Date + '').split(' ').slice(-1)[0].replace(/\(|\)/g, ''); this.timezone = options.timezone || this.defaultTimeZone;以上所述是小编给大家介绍的 bootstrap datetimepicker 日期插件在火狐下出现一条报错信息的原因分析及解决办法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“bootstrap datetimepicker 日期插件在火狐下出现一条报错信息的原因分析及解决办法”评论...