I need to get all the cookies from the browser

前端 未结 9 1298
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 09:52

I need to get all the cookies stored in my browser using JavaScript. How can it be done?

9条回答
  •  失恋的感觉
    2020-12-04 10:48

    1. You can't see cookies for other sites.
    2. You can't see HttpOnly cookies.
    3. All the cookies you can see are in the document.cookie property, which contains a semicolon separated list of name=value pairs.

提交回复
热议问题