我需要显示日期和时间字段,以及这些字段旁边的文本中显示的时区,如链接中所示日期范围和日期时间字段
有人能帮助如何使用Ext3或Ext4实现上述字段吗?
inkz8wg91#
只需获取时区偏移量,然后获取匹配的时区。
Ext.application({ name: 'Fiddle', launch: function () { const offset = new Date().getTimezoneOffset(); Ext.Msg.show({ icon: Ext.MessageBox.INFO, title: 'Timezone Offset', message: `the current timezone offset is: ${offset}` }); } });
1条答案
按热度按时间inkz8wg91#
只需获取时区偏移量,然后获取匹配的时区。