이 기사의 예에서는 JS에서 지정된 쿠키를 삭제하는 방법을 설명하는데 이는 매우 실용적입니다. 참고할 수 있도록 모든 사람과 공유하세요.
구체적인 구현 코드는 다음과 같습니다.
function GetCookieValue(name) { var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = jQuery.trim(cookies[i]); //PYYH=USERNAME=steven&PASSWORD=111111&UserID=1&UserType=1 if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); //USERNAME=steven&PASSWORD=111111&UserID=1&UserType=1 break; } } } return cookieValue; } function DelCookie(name) { var exp = new Date(); exp.setTime(exp.getTime() + (-1 * 24 * 60 * 60 * 1000)); var cval = GetCookieValue(name); document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString(); } function exit() { DelCookie("PYYH"); window.location.replace("http://localhost:7877/index.aspx"); }
이 기사가 모든 사람이 js WEB 프론트엔드 프로그래밍을 배우는 데 도움이 되기를 바랍니다.