Skip to content

Instantly share code, notes, and snippets.

@black-black-cat
Created March 18, 2016 03:06
Show Gist options
  • Save black-black-cat/7c53b60311028cd4c166 to your computer and use it in GitHub Desktop.
Save black-black-cat/7c53b60311028cd4c166 to your computer and use it in GitHub Desktop.
获取cookies并将其转化为对象
function getCookieObj() {
var ary = document.cookie.split(/;\s?/), cookieObj = {};
for (var i = 0, n = ary.length; i < n; i++) {
var t = ary[i].split('=');
if (t.length === 2)
cookieObj[t[0]] = t[1];
}
return cookieObj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment