var document = webBrowser1.Document; document.ExecCommand("ClearAuthenticationCache", false, null); 找了好几天才找着,国内搜索已经被百毒打败. Delete cookies in webBrowser without restart http://stackoverflow.com/questions/21265674/delete-cookies-in-webbrowser-witho…
function clearCookie(){ if(document.cookie.length < 2048){ return; } //cookie大于2kb,清除cookie var cookies =document.cookie.replace(/\s*/g,'').split(';'); var cookieNameArr=$.map(cookies,function(e){ return e.split('=')[0]; }) $.each(cookieNameArr,funct…