gpt4 book ai didi

javascript - 在首页加载之前设置时区 cookie

转载 作者:行者123 更新时间:2023-11-28 07:39:31 25 4
gpt4 key购买 nike

在我的 ASP.NET 网站上,我有很多带有时间戳的页面。我想将时间戳从服务器时间即时转换为浏览器时间。为此,我需要在代码隐藏中获取客户端的时区偏移量。

我尝试设置 TimezoneOffset <head>中的cookie使用 JavaScript 的每个页面。但它(显然)在第一次加载页面时不起作用(并且之前没有设置 cookie)。

是否有任何优雅的解决方案可以将日期从服务器时间转换为客户端时间?

我看到的唯一解决方案是检查 TimezoneOffset cookie Page_Load ,然后重定向到将设置此 cookie 的虚拟页面,然后使用 JS 重定向回原始页面,但我不喜欢这种解决方案。

最佳答案

我认为您无法在用户进入页面之前访问任何用户的信息,但您可以在头部检查 cookie 并重新加载页面。这看起来像这样:

var time = getCookie("timezoneoffset");
if(time !== undefined) {
//congrats, the timezone is set!
} else {
//set the cookie here, then do this:
location.reload()
}

关于javascript - 在首页加载之前设置时区 cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28226324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com