最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - js cookie is not shown in chrome developer tools - Stack Overflow

programmeradmin0浏览0评论

I created cookie with server side code (c#) and it was shown in chrome developer tools. (Resources->Cookies) now I created it in js and it is not shown there anymore. if I write in the console: "document.cookie" - I can see my cookie, but I want to see it in Resources->Cookies so I can easily delete it when I want to. the code to create the cookie: (from: .asp?output=print)

function setCookie(c_name, value, exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" +   exdate.toUTCString());
document.cookie = c_name + "=" + c_value;
}

and:

setCookie("myCookie", "true", 365);

I created cookie with server side code (c#) and it was shown in chrome developer tools. (Resources->Cookies) now I created it in js and it is not shown there anymore. if I write in the console: "document.cookie" - I can see my cookie, but I want to see it in Resources->Cookies so I can easily delete it when I want to. the code to create the cookie: (from: http://www.w3schools./js/js_cookies.asp?output=print)

function setCookie(c_name, value, exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" +   exdate.toUTCString());
document.cookie = c_name + "=" + c_value;
}

and:

setCookie("myCookie", "true", 365);
Share Improve this question asked Jul 2, 2012 at 14:31 bananabanana 1,2064 gold badges15 silver badges27 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 4

Some updates on very similar topic. Secure cookies are not shown on insecure sites.

https://groups.google./forum/#!topic/google-chrome-developer-tools/rSbJ1m2F3HY

You need to refresh the resources inspector (small refresh icon in the bottom of the dev tools tray) before it appears.

As from experience, you'll need to refresh the cookies page after you implement the cookie with JS.

Check the cookie settings in your browser and select Allow all cookies option and then refresh the page.

发布评论

评论列表(0)

  1. 暂无评论