<script> 'use strict'; const agree = Cookies.get('cookie-agree'); if(agree === 'yes') { console.log('クッキーを確認しました'); } else { console.log('クッキーを確認できません'); document.getElementById('agreebtn').onclick = function() { Cookies.set('cookie-agree', 'yes', {expires: 7}); }; } // クッキー削除(テスト用) document.getElementById('testbtn').onclick = function() { Cookies.remove('cookie-agree'); }; </script>
- F12押してconsoleで、クッキーの確認ができる