(function () { const maxHistory = 3; // 最大瀏覽紀錄數 const pageUrl = window.location.href; // 讀取現有的 cookies const getCookie = (name) => { const value = `; ${document.cookie}`; const parts = value.split(`; ${name}=`); return parts.length === 2 ? parts.pop().split(';').shift() : ''; }; const setCookie = (name, value, days) => { const expires = new Date(Date.now() + days * 864e5).toUTCString(); document.cookie = `${name}=${value}; expires=${expires}; path=/`; }; let history = getCookie('pageHistory') ? JSON.parse(getCookie('pageHistory')) : []; if (!history.includes(pageUrl)) { history.unshift(pageUrl); if (history.length > maxHistory) { history.pop(); } setCookie('pageHistory', JSON.stringify(history), 7); // Cookies 保存 7 天 } })();
top of page

All Posts

bottom of page