如何附加 cookie 值
我有四个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这使用了 jQuery(我假设您正在使用它,因为您引用了 $.cookie)。基本上,您可以获取当前的 cookie 集合,将其拆分为 cookie 并将值映射到数组中。然后只需加入数组并将其转储到文本框中即可。
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.