Clear session cookies in ie11?

孤人 提交于 2019-12-03 19:47:47

问题


in previous versions of IE the F12 dev tools had several option for cache and cookie management, but in the new IE 11 version (on the network tab) the option to clear / delete session cookies seems to be missing, does anyone know where to find it, (or how to accomplish this)

ps- no, "close IE and restart" is not a solution


回答1:


There's a Clear Cookies for Domain button at the top center of the Network tab in the remodeled F12 tools.

To clear ALL session cookies, in the address bar, type:

javascript:document.execCommand("ClearAuthenticationCache")

and hit enter. Note that you must type this command yourself; if you copy/paste it, IE will delete the javascript: at the front of the string for security reasons.




回答2:


Press F12 to open Developer Tools, go to Console tab, enter this Javascript command

document.execCommand("ClearAuthenticationCache")

I tried and saw that typing in address bar won't work.



来源:https://stackoverflow.com/questions/20601097/clear-session-cookies-in-ie11

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