1.存储大小
cookie只能存储4kb左右,sessionStorage和localStorage可以存储5M左右
2.操作环境
cookie前后端都可以操作,sessionStorage和localStorage只能前端操作
3.时效性
cookie可以设置过期时间,未设置过期时间就是会话级,sessionStorage是会话级,localStorage未手动删除会一直存在
4.便捷性
cookie需要自己封装方法,sessionStorage和localStorage直接使用即可
5.兼容性
cookie所有浏览器都可以使用,sessionStorage和localStorage在IE低版本不能使用