gpt4 book ai didi

asp.net - 在javascript中读取cookie

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

这是我的 asp 代码,可以用 Javascript 完成吗?

HttpCookie cookie = this.Request.Cookies["Votes"];
if (cookie != null)
if (cookie.Values.Get(id.ToString()) == "true") return true;
return false;

最佳答案

function readTheCookie(the_info)
{
// load the cookie into a variable and unescape it

var the_cookie = document.cookie;
var the_cookie = unescape(the_cookie);

// separate the values from the cookie name

var broken_cookie = the_cookie.split("some parameter"); // parameter depends on how the cookie is stored
var the_values = broken_cookie["some index"]; // index of the value that you want
}

这些是读取cookie的所有部分,你可以使用这个片段来实现你想要的。

关于asp.net - 在javascript中读取cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1454619/

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