bootstrap-datetimepicker在火狐下報錯的問題

最近些項目,使用了bootstrap-datetimepicker插件顯示日期,可是在火狐瀏覽器下會報錯:bootstrap

TypeError: (intermediate value).toString(...).split(...)[1] is undefined

從網上查了資料,找到了一個靠譜的解決辦法,須要修改源文件:瀏覽器

this.defaultTimeZone=(new Date).toString().split("(")[1].slice(0,-1);

改成this

this.defaultTimeZone='GMT '+(new Date()).getTimezoneOffset()/60;
相關文章
相關標籤/搜索