使用 JavaScript 删除 PayPal 购物车的所有 cookie?
我正在尝试清空 PayPal 中的购物车。这些 cookie 使用会话 ID 作为密钥的一部分进行了严格加密,因此几乎不可能简单地创建过期日期为 -1 的 cookie。
因此,我尝试执行 document.cookie = "";
但这不起作用 - 在我执行代码后,cookie 仍然存在。那么有没有一个简单的“一行”来完成我想要的事情呢?我认为所有域名都设置为“PayPal.COM”
I am attempting to empty my shopping cart in PayPal. The cookies are heavily encrypted with a session ID as part of the key and therefore is next to impossible to do a simple create cookie with a -1 in the expiration date.
So I tried doing a document.cookie = "";
and that does not work – the cookies are still there after I execute the code. So is there a simple "one-liner" to do what I want? I think that all of the domains are set for "PayPal.COM"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法为不属于您的域设置 cookie。
You can't set cookies for a domain you don't own.