<bdo id='lSIHa'></bdo><ul id='lSIHa'></ul>

      <i id='lSIHa'><tr id='lSIHa'><dt id='lSIHa'><q id='lSIHa'><span id='lSIHa'><b id='lSIHa'><form id='lSIHa'><ins id='lSIHa'></ins><ul id='lSIHa'></ul><sub id='lSIHa'></sub></form><legend id='lSIHa'></legend><bdo id='lSIHa'><pre id='lSIHa'><center id='lSIHa'></center></pre></bdo></b><th id='lSIHa'></th></span></q></dt></tr></i><div id='lSIHa'><tfoot id='lSIHa'></tfoot><dl id='lSIHa'><fieldset id='lSIHa'></fieldset></dl></div>
      <tfoot id='lSIHa'></tfoot>

      <small id='lSIHa'></small><noframes id='lSIHa'>

    1. <legend id='lSIHa'><style id='lSIHa'><dir id='lSIHa'><q id='lSIHa'></q></dir></style></legend>
      1. 无论用户的时区如何,如何始终将日期设置为东部时间

        时间:2023-06-14
        • <legend id='FYalE'><style id='FYalE'><dir id='FYalE'><q id='FYalE'></q></dir></style></legend>

            <bdo id='FYalE'></bdo><ul id='FYalE'></ul>

                <tbody id='FYalE'></tbody>
                <tfoot id='FYalE'></tfoot>

                <small id='FYalE'></small><noframes id='FYalE'>

              1. <i id='FYalE'><tr id='FYalE'><dt id='FYalE'><q id='FYalE'><span id='FYalE'><b id='FYalE'><form id='FYalE'><ins id='FYalE'></ins><ul id='FYalE'></ul><sub id='FYalE'></sub></form><legend id='FYalE'></legend><bdo id='FYalE'><pre id='FYalE'><center id='FYalE'></center></pre></bdo></b><th id='FYalE'></th></span></q></dt></tr></i><div id='FYalE'><tfoot id='FYalE'></tfoot><dl id='FYalE'><fieldset id='FYalE'></fieldset></dl></div>
                  本文介绍了无论用户的时区如何,如何始终将日期设置为东部时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个服务器在 Unix 时间给我的日期:1458619200000

                  I have a date given to me by a server in unix time: 1458619200000

                  注意:您标记为重复"的其他问题并未显示如何从 UNIX TIME 到达那里.我正在寻找 javascript 中的特定示例.

                  但是,我发现根据我的时区,我会得到两种不同的结果:

                  However, I find that depending on my timezone I'll have two different results:

                  d = new Date(1458619200000)
                  Mon Mar 21 2016 21:00:00 GMT-0700 (Pacific Daylight Time)
                  

                  //现在我将计算机设置为东部时间,我得到了不同的结果.

                  // Now I set my computer to Eastern Time and I get a different result.

                  d = new Date(1458619200000)
                  Tue Mar 22 2016 00:00:00 GMT-0400 (Eastern Daylight Time)
                  

                  那么我如何显示日期:1458619200000 ... 无论我的计算机的时区如何,始终处于东部时间(3 月 22 日)?

                  So how can I show the date: 1458619200000 ... to always be in eastern time (Mar 22) regardless of my computer's time zone?

                  推荐答案

                  您可以使用 getTimezoneOffset() 函数.例如,

                  You can easily take care of the timezone offset by using the getTimezoneOffset() function in Javascript. For example,

                  var dt = new Date(1458619200000);
                  console.log(dt); // Gives Tue Mar 22 2016 09:30:00 GMT+0530 (IST)
                  
                  dt.setTime(dt.getTime()+dt.getTimezoneOffset()*60*1000);
                  console.log(dt); // Gives Tue Mar 22 2016 04:00:00 GMT+0530 (IST)
                  
                  var offset = -300; //Timezone offset for EST in minutes.
                  var estDate = new Date(dt.getTime() + offset*60*1000);
                  console.log(estDate); //Gives Mon Mar 21 2016 23:00:00 GMT+0530 (IST)
                  

                  虽然,后面表示的语言环境字符串不会改变.此答案的来源在这篇文章中.希望这会有所帮助!

                  Though, the locale string represented at the back will not change. The source of this answer is in this post. Hope this helps!

                  这篇关于无论用户的时区如何,如何始终将日期设置为东部时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 MongoDB 中存储日期而不考虑时区 下一篇:Javascript Date.toJSON 没有得到时区偏移

                  相关文章

                • <tfoot id='50LsP'></tfoot>

                    <legend id='50LsP'><style id='50LsP'><dir id='50LsP'><q id='50LsP'></q></dir></style></legend>
                    • <bdo id='50LsP'></bdo><ul id='50LsP'></ul>

                    <small id='50LsP'></small><noframes id='50LsP'>

                      <i id='50LsP'><tr id='50LsP'><dt id='50LsP'><q id='50LsP'><span id='50LsP'><b id='50LsP'><form id='50LsP'><ins id='50LsP'></ins><ul id='50LsP'></ul><sub id='50LsP'></sub></form><legend id='50LsP'></legend><bdo id='50LsP'><pre id='50LsP'><center id='50LsP'></center></pre></bdo></b><th id='50LsP'></th></span></q></dt></tr></i><div id='50LsP'><tfoot id='50LsP'></tfoot><dl id='50LsP'><fieldset id='50LsP'></fieldset></dl></div>