function setCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
$(document).ready(function(){
alert(getCookie('foo'));
setCookie('foo','test'); //just setting a cookie on page load
$('#bing').click(function(){
$('#frm1').submit();
});
});
HTML side(foo.phtml)
<a href="javascript:void(0);" id="bing">Go</a>
<form id="frm1" method="POST" action="/somecontroller/someaction">
<input type="hidden" name="foo_post" value="this is from post" />
</form>
//服务器端
public function someactionAction(){
$_COOKIE['foo'] = $this->_request->getPost('foo_post');
$this->_redirect('/somecontroller/foo');
}
我的问题在于页面的第一次加载alert
返回null,因为没有设置cookie,如果我再次刷新,生病得到alert
“测试”但是如果我点击锚标记一个表单提交将发生,cookie值被重写为“这是来自帖子”,所以很明显在回到页面的行动后得到“这是来自帖子”的警报,但我仍然得到一个警报“测试“,cookie值不会被重写
在我的mozilla cookie控制台中,有两个名为foo的cookie,其值为“test”,“this is from post”
答案 0 :(得分:1)
“有两个名为foo的饼干”
如果名称相同,则域必须不同。使用相同的域设置两个cookie。请注意,example.net
与www.example.net
或.example.net
不同。