久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

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

    <tfoot id='kfAVZ'></tfoot>
      1. <small id='kfAVZ'></small><noframes id='kfAVZ'>

          <bdo id='kfAVZ'></bdo><ul id='kfAVZ'></ul>
        <legend id='kfAVZ'><style id='kfAVZ'><dir id='kfAVZ'><q id='kfAVZ'></q></dir></style></legend>

        停止 javascript Date 函數(shù)更改時區(qū)偏移量

        Stop javascript Date function from changing timezone offset(停止 javascript Date 函數(shù)更改時區(qū)偏移量)

                <tbody id='PMWS2'></tbody>

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

            1. <tfoot id='PMWS2'></tfoot>
              • <i id='PMWS2'><tr id='PMWS2'><dt id='PMWS2'><q id='PMWS2'><span id='PMWS2'><b id='PMWS2'><form id='PMWS2'><ins id='PMWS2'></ins><ul id='PMWS2'></ul><sub id='PMWS2'></sub></form><legend id='PMWS2'></legend><bdo id='PMWS2'><pre id='PMWS2'><center id='PMWS2'></center></pre></bdo></b><th id='PMWS2'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='PMWS2'><tfoot id='PMWS2'></tfoot><dl id='PMWS2'><fieldset id='PMWS2'></fieldset></dl></div>

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

                • 本文介紹了停止 javascript Date 函數(shù)更改時區(qū)偏移量的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  所以我有需要從字符串轉(zhuǎn)換為日期對象的 iso 日期時間.如何保持日期不將其轉(zhuǎn)換為本地瀏覽器時區(qū).

                  So I have iso date time that need to be converted from a string to date object. How do I keep date from converting it to local browser timezone.

                  new Date('2013-07-18T17:00:00-05:00')
                  Thu Jul 18 2013 18:00:00 GMT-0400 (EDT)
                  

                  我想得到

                  2013 年 7 月 18 日星期四 17:00:00 GMT-0500 (XX)

                  Thu Jul 18 2013 17:00:00 GMT-0500 (XX)

                  推薦答案

                  雖然 MomentJS 是一個很棒的庫,但它可能無法為每個用例提供解決方案.例如,我的服務(wù)器以 UTC 格式提供日期,并且當日期的時間部分未保存在數(shù)據(jù)庫中(因為它無關(guān)緊要)時,客戶端會收到一個默認時間全為零的字符串 - 午夜 - 并以+0000 的偏移量.然后瀏覽器會根據(jù)我的本地時區(qū)自動調(diào)整,并將時間向后拉幾個小時,結(jié)果是前一天.

                  While MomentJS is a great library, it may not provide a solution for every use case. For example, my server provides dates in UTC, and when the time portion of the date is not saved in the db (because it's irrelevant), the client receives a string that has a default time of all zeros - midnight - and ends with an offset of +0000. The browser then automatically adjusts for my local time zone and pulls the time back by a few hours, resulting in the previous day.

                  MomentJs 也是如此.

                  This is true with MomentJs as well.

                  一種解決方案是切掉字符串的時間部分,然后按照其他答案中的說明使用 MomentJS.

                  One solution is to slice off the time portion of the string, and then use MomentJS as described in the other answers.

                  但是如果 MomentJS 不是一個可行的選擇會發(fā)生什么,即我已經(jīng)有很多地方使用 JS Date 并且不想更新這么多代碼行?問題是如何首先阻止瀏覽器根據(jù)本地時區(qū)轉(zhuǎn)換日期.答案是,當日期是 ISO 格式時,你不能.

                  But what happens if MomentJS is not a viable option, i.e. I already have many places that use a JS Date and don't want to update so many lines of code? The question is how to stop the browser from converting dates based on local time zone in the first place. And the answer is, when the date is in ISO format, you cannot.

                  然而,沒有規(guī)定你傳遞給 JavaScript 的 Date 構(gòu)造函數(shù)的字符串必須是 ISO 格式.如果您只是將分隔年、月、日的 - 替換為 /,您的瀏覽器將執(zhí)行任何轉(zhuǎn)換.

                  However, there is no rule that says the string you pass to JavaScript's Date constructor must be in ISO format. If you simply replace the - that separates the year, month, and day with a /, your browser will not perform any conversion.

                  在我的例子中,我只是更改了 Dates 服務(wù)器端的格式,問題就解決了,而無需使用 MomentJS 更新所有客戶端 JS 日期.

                  In my case, I simply changed the format of the Dates server-side, and the problem was solved without having to update all the client-side JS dates with MomentJS.

                  請注意,在解析字符串以創(chuàng)建 Date 實例時,JavaScript 的 Date 類的 MDN 文檔會警告不可預(yù)測的瀏覽器行為.

                  Note that the MDN docs for JavaScript's Date class warn about unpredictable browser-behavior when parsing a string to create a Date instance.

                  這篇關(guān)于停止 javascript Date 函數(shù)更改時區(qū)偏移量的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調(diào)用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調(diào)用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標頭) - IT屋-程序員軟件開發(fā)技術(shù)分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內(nèi)容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                  • <legend id='bsQ4Q'><style id='bsQ4Q'><dir id='bsQ4Q'><q id='bsQ4Q'></q></dir></style></legend>
                    1. <i id='bsQ4Q'><tr id='bsQ4Q'><dt id='bsQ4Q'><q id='bsQ4Q'><span id='bsQ4Q'><b id='bsQ4Q'><form id='bsQ4Q'><ins id='bsQ4Q'></ins><ul id='bsQ4Q'></ul><sub id='bsQ4Q'></sub></form><legend id='bsQ4Q'></legend><bdo id='bsQ4Q'><pre id='bsQ4Q'><center id='bsQ4Q'></center></pre></bdo></b><th id='bsQ4Q'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='bsQ4Q'><tfoot id='bsQ4Q'></tfoot><dl id='bsQ4Q'><fieldset id='bsQ4Q'></fieldset></dl></div>
                        <tbody id='bsQ4Q'></tbody>

                      1. <tfoot id='bsQ4Q'></tfoot>
                        • <bdo id='bsQ4Q'></bdo><ul id='bsQ4Q'></ul>

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

                            主站蜘蛛池模板: 在线视频中文字幕 | 三级av在线 | 成人欧美日韩一区二区三区 | 欧美理论片在线观看 | 精品亚洲一区二区三区 | 特黄色毛片 | 91.色| 欧美jizzhd精品欧美巨大免费 | 国产精品国产三级国产aⅴ中文 | 成人免费观看视频 | 91av在线免费 | 国产一区不卡 | 中文字幕在线三区 | 免费黄色大片 | 久艹av| 国产羞羞视频在线观看 | 亚洲日本激情 | 亚洲视频免费 | 成人h视频在线 | 91视频免费 | 蜜桃一区二区三区在线 | 国产高清毛片 | 日韩免费av | 91资源在线 | 国产成人综合久久 | 日韩精品视频中文字幕 | 日韩av一区二区在线观看 | 超碰人人在线 | 超碰精品在线观看 | 精品国产免费人成在线观看 | 国产亚洲网站 | 亚洲午夜精品久久久久久app | 国产毛片久久久久久久久春天 | 日本免费一区二区三区 | 欧美亚洲在线视频 | 精品在线视频播放 | 国产一区二区小视频 | 国产精品视频一区二区三区 | 四虎影院在线观看免费视频 | 九色在线观看 | 亚洲精品99 |