admin管理员组文章数量:1344953
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
4 Answers
Reset to default 4Some 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.
本文标签: javascriptjs cookie is not shown in chrome developer toolsStack Overflow
版权声明:本文标题:javascript - js cookie is not shown in chrome developer tools - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786265a2538739.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论