JavaScript bookmarklet to delete all cookies within a given domain

本秂侑毒 提交于 2019-11-29 11:29:20

问题


I am testing a web app that writes cookies to subdomain.thisdomain.com and several subfolders within that. I'm looking for JavaScript that I can put into a bookmarklet that will delete all cookies under that subdomain, regardless of the folder in which they exist.

Any ideas?


回答1:


Derived from my answer here:

javascript:new function(){var c=document.cookie.split(";");for(var i=0;i<c.length;i++){var e=c[i].indexOf("=");var n=e>-1?c[i].substr(0,e):c[i];document.cookie=n+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT";}}(); return void(0);

Due to browser security issues, this will only work when executed while on a page that has access to all the cookies you want to delete.




回答2:


I would recommend Firecookie extension to Firebug.



来源:https://stackoverflow.com/questions/178263/javascript-bookmarklet-to-delete-all-cookies-within-a-given-domain

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!