我可能會問錯誤的問題,但我對JavaScript還是比較新的。我需要創建一個cookie來重新限制用戶在線產品演示的用途數量。在僞代碼,我相信它會是這樣的:如何檢索cookie的值?
if(readCookie('demo') == null){
createCookie('demo','1',1);} //Assuming the functions for setting a cookie and retrieving it have already been created.
else {
readCookie('demo');
}
if demo cookie has value{
increment the value by one
}
else if value exceeds 10 {
alert message //I set this so I could test out the function
}
任何幫助,將不勝感激!
搜索:http://stackoverflow.com/search?q=javascript+讀取+寫入Cookie餅乾 –
您應該認識到,用戶刪除自己的Cookie並儘可能多地播放它們是微不足道的。 – jfriend00