如何附加 cookie 值

发布于 2024-12-07 01:54:12 字数 220 浏览 1 评论 0原文

我有四个 cookie 值,例如 $.cookie('line1side1',{ path:'/'}) 和 $.cookie('line2side1',{ path:'/'})

我想附加这些所有值并将其分配给一个文本框。

document.getElementsByName('Custom_Field_Custom7')[0].value=cookie的所有值

应该怎么写?

I have four cookie values like $.cookie('line1side1',{ path:'/'}) and $.cookie('line2side1',{ path:'/'})

I want to append this all values and assign it to the one text-box.

document.getElementsByName('Custom_Field_Custom7')[0].value= all values of cookie

How should I write?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请叫√我孤独 2024-12-14 01:54:12

这使用了 jQuery(我假设您正在使用它,因为您引用了 $.cookie)。基本上,您可以获取当前的 cookie 集合,将其拆分为 cookie 并将值映射到数组中。然后只需加入数组并将其转储到文本框中即可。

alert($.map(document.cookie.split(";"), function(c){ return c.split("=")[0];  }).join(", "));

This uses jQuery (I'm assuming you're using it since you reference $.cookie). Basically you can grab the current cookie collection, split it into the cookies and map the values into an array. Then just join the array and dump it into your textbox.

alert($.map(document.cookie.split(";"), function(c){ return c.split("=")[0];  }).join(", "));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文