我只是製作一個面板,(div)具有cookie,並且可以打開或關閉。 我想雖然動畫的div打開或關閉點擊。向上和向下動畫div
我到目前爲止的代碼是:
var state;
window.onload=function() {
obj=document.getElementById('closeable');
state=(state==null)?'hide':state;
obj.className=state;
document.getElementById('setup').onclick=function() {
obj.className=(obj.className=='show')?'hide':'show';
state=obj.className;
setCookie();
return false;
}
}
function setCookie() {
exp=new Date();
plusMonth=exp.getTime()+(31*24*60*60*1000);
exp.setTime(plusMonth);
document.cookie='State='+state+';expires='+exp.toGMTString();
}
function readCookie() {
if(document.cookie) {
state=document.cookie.split('State=')[1];
}
}
readCookie();
任何幫助表示讚賞
完美馬赫什,我希望你住在布里斯班。我們會立即僱傭你。偉大的工作夥伴,再次感謝(第二次你協助我們)問候 – 422 2011-03-26 01:09:01
jsfiddle再次罷工! – typeof 2011-03-26 01:10:54
很高興幫助:) – 2011-03-26 01:11:22