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

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

    1. <legend id='jNb6T'><style id='jNb6T'><dir id='jNb6T'><q id='jNb6T'></q></dir></style></legend>
        <bdo id='jNb6T'></bdo><ul id='jNb6T'></ul>

        在用户的时区显示日期/时间 - 在客户端

        Displaying date/time in user#39;s timezone - on client side(在用户的时区显示日期/时间 - 在客户端)
        • <bdo id='pfvQ2'></bdo><ul id='pfvQ2'></ul>

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

          <legend id='pfvQ2'><style id='pfvQ2'><dir id='pfvQ2'><q id='pfvQ2'></q></dir></style></legend>

            <tbody id='pfvQ2'></tbody>

              <tfoot id='pfvQ2'></tfoot>

              <i id='pfvQ2'><tr id='pfvQ2'><dt id='pfvQ2'><q id='pfvQ2'><span id='pfvQ2'><b id='pfvQ2'><form id='pfvQ2'><ins id='pfvQ2'></ins><ul id='pfvQ2'></ul><sub id='pfvQ2'></sub></form><legend id='pfvQ2'></legend><bdo id='pfvQ2'><pre id='pfvQ2'><center id='pfvQ2'></center></pre></bdo></b><th id='pfvQ2'></th></span></q></dt></tr></i><div id='pfvQ2'><tfoot id='pfvQ2'></tfoot><dl id='pfvQ2'><fieldset id='pfvQ2'></fieldset></dl></div>
                • 本文介绍了在用户的时区显示日期/时间 - 在客户端的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个在每个页面上显示日期时间戳的 Web 应用程序,例如:

                  I have a web application that displays datetime stamps on every page, for example:

                  2009 年 12 月 12 日下午 6:00

                  December 12, 2009 6:00 pm

                  我想动态检测用户的时区并使用 JavaScript 更改显示.

                  I would like to dynamically detect the user's timezone and alter the display using JavaScript.

                  所以纽约用户会看到:

                  2009 年 12 月 12 日下午 6:00

                  December 12, 2009 6:00 pm

                  虽然加利福尼亚用户会看到:

                  While the California user would see:

                  2009 年 12 月 12 日下午 3:00

                  December 12, 2009 3:00 pm

                  有什么建议吗?

                  推荐答案

                  以下是您可以如何通过精彩的渐进式增强"来做到这一点:

                  Here is how you could do it with the wonderful "progressive enhancement":

                  输出你希望它出现的日期,但一定要指定它的时区(我在这里使用 GMT,但你可以使用 UTC 等).然后将其替换为加载时的本地时间(如果提供了原始时区,则由 JavaScript 自动处理).

                  Output the date where you want it to appear, but be sure to specify its timezone (I use GMT here, but you could use UTC, etc). Then swap it out with the local time on load (Automatically handled by JavaScript if the original timezone is provided).

                  <div id="timestamp">December 12, 2009 6:00 pm GMT</div>
                  <script type="text/javascript">
                      var timestamp = document.getElementById('timestamp'),
                          t         = new Date(timestamp.innerHTML),
                          hours     = t.getHours(), 
                          min       = t.getMinutes() + '', 
                          pm        = false,
                          months    = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
                  
                      if(hours > 11){
                         hours = hours - 12;
                         pm = true;
                      }
                  
                      if(hours == 0) hours = 12;
                      if(min.length == 1) min = '0' + min;
                  
                      timestamp.innerHTML = months[t.getMonth()] + ' ' + t.getDate() + ', ' + t.getFullYear() + ' ' + hours + ':' + min + ' ' + (pm ? 'pm' : 'am');
                  </script>
                  

                  这篇关于在用户的时区显示日期/时间 - 在客户端的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What are valid deviceNames for Chrome emulation testing with Protractor?(使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?)
                  Protractor Check if Element Does Not Exist(量角器检查元素是否不存在)
                  Protractor e2e Tests Login Redirection(Protractor e2e 测试登录重定向)
                  Explain about async/ await in Protractor(解释 Protractor 中的 async/await)
                  Protractor browser.wait doesn#39;t wait(量角器 browser.wait 不等待)
                  How to use Protractor with Angular 2?(如何在 Angular 2 中使用量角器?)

                    • <bdo id='ALt2t'></bdo><ul id='ALt2t'></ul>

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

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

                      1. <legend id='ALt2t'><style id='ALt2t'><dir id='ALt2t'><q id='ALt2t'></q></dir></style></legend>
                            <tbody id='ALt2t'></tbody>
                            <tfoot id='ALt2t'></tfoot>