在此处使用jQuery.cookie
:
// Do stuff
$.cookie('something', 'yes', {
domain: 'example.com',
httpOnly: false,
path: '/',
expires: 10,
secure: true
});
// Do other stuff...including using the cookie value right away
所有浏览器都做同样的事情吗?
答案 0 :(得分:3)
是....
这就是该插件的重点 - 能够立即使用该值。