JavaScript로 쿠키 설정 및 쿠키 가져오기
HTML에서 선택하는 CSS 파일에 따라 쿠키를 설정하려고 합니다.옵션 리스트가 있는 폼과 다른 CSS 파일을 값으로 사용합니다.파일을 선택하면 일주일 정도 쿠키에 저장해야 합니다.다음에 HTML 파일을 열 때 이전에 선택한 파일이어야 합니다.
JavaScript 코드:
function cssLayout() {
document.getElementById("css").href = this.value;
}
function setCookie(){
var date = new Date("Februari 10, 2013");
var dateString = date.toGMTString();
var cookieString = "Css=document.getElementById("css").href" + dateString;
document.cookie = cookieString;
}
function getCookie(){
alert(document.cookie);
}
HTML 코드:
<form>
Select your css layout:<br>
<select id="myList">
<option value="style-1.css">CSS1</option>
<option value="style-2.css">CSS2</option>
<option value="style-3.css">CSS3</option>
<option value="style-4.css">CSS4</option>
</select>
</form>
다음 코드는 다른 어떤 것보다 훨씬 단순합니다.
function setCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + (value || "") + expires + "; path=/";
}
function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
document.cookie = name +'=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
}
이제 호출함수
setCookie('ppkcookie','testcookie',7);
var x = getCookie('ppkcookie');
if (x) {
[do something with x]
}
출처 - http://www.quirksmode.org/js/cookies.html
오늘 페이지를 업데이트했으므로 현재 페이지의 모든 내용이 최신 상태여야 합니다.
다음은 w3schools보다 훨씬 더 좋은 참고 자료입니다(지금까지 나온 것 중 가장 끔찍한 웹 참조 자료입니다.
이러한 참조로부터 도출된 예는 다음과 같습니다.
// sets the cookie cookie1
document.cookie = 'cookie1=test; expires=Sun, 1 Jan 2023 00:00:00 UTC; path=/'
// sets the cookie cookie2 (cookie1 is *not* overwritten)
document.cookie = 'cookie2=test; expires=Sun, 1 Jan 2023 00:00:00 UTC; path=/'
// remove cookie2
document.cookie = 'cookie2=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/'
Mozilla 참조에는 사용할 수 있는 멋진 쿠키 라이브러리도 있습니다.
JS를 통해 쿠키 값을 설정 및 가져오려면 W3Schools.com의 JavaScript Cookie를 확인하십시오.
여기서 설명한 setCookie 및 getCookie 메서드를 사용합니다.
코드는 다음과 같습니다.
<script>
function setCookie(c_name, value, exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
document.cookie = c_name + "=" + c_value;
}
function getCookie(c_name) {
var i, x, y, ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == c_name) {
return unescape(y);
}
}
}
function cssSelected() {
var cssSelected = $('#myList')[0].value;
if (cssSelected !== "select") {
setCookie("selectedCSS", cssSelected, 3);
}
}
$(document).ready(function() {
$('#myList')[0].value = getCookie("selectedCSS");
})
</script>
<select id="myList" onchange="cssSelected();">
<option value="select">--Select--</option>
<option value="style-1.css">CSS1</option>
<option value="style-2.css">CSS2</option>
<option value="style-3.css">CSS3</option>
<option value="style-4.css">CSS4</option>
</select>
이 질문에는 쿠키와 함께 키와 값의 쌍으로 사용할 수 있는 재사용 가능한 코드가 포함되어 있습니다.
이 스니펫은 MDN에서 가져온 것으로 신뢰할 수 있습니다.쿠키 작업에 UTF 세이프 오브젝트입니다.
var docCookies = {
getItem: function (sKey) {
return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + encodeURIComponent(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*([^;]*).*$)|^.*$"), "$1")) || null;
},
setItem: function (sKey, sValue, vEnd, sPath, sDomain, bSecure) {
if (!sKey || /^(?:expires|max\-age|path|domain|secure)$/i.test(sKey)) { return false; }
var sExpires = "";
if (vEnd) {
switch (vEnd.constructor) {
case Number:
sExpires = vEnd === Infinity ? "; expires=Fri, 31 Dec 9999 23:59:59 GMT" : "; max-age=" + vEnd;
break;
case String:
sExpires = "; expires=" + vEnd;
break;
case Date:
sExpires = "; expires=" + vEnd.toUTCString();
break;
}
}
document.cookie = encodeURIComponent(sKey) + "=" + encodeURIComponent(sValue) + sExpires + (sDomain ? "; domain=" + sDomain : "") + (sPath ? "; path=" + sPath : "") + (bSecure ? "; secure" : "");
return true;
},
removeItem: function (sKey, sPath, sDomain) {
if (!sKey || !this.hasItem(sKey)) { return false; }
document.cookie = encodeURIComponent(sKey) + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT" + ( sDomain ? "; domain=" + sDomain : "") + ( sPath ? "; path=" + sPath : "");
return true;
},
hasItem: function (sKey) {
return (new RegExp("(?:^|;\\s*)" + encodeURIComponent(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=")).test(document.cookie);
},
keys: /* optional method: you can safely remove it! */ function () {
var aKeys = document.cookie.replace(/((?:^|\s*;)[^\=]+)(?=;|$)|^\s*|\s*(?:\=[^;]*)?(?:\1|$)/g, "").split(/\s*(?:\=[^;]*)?;\s*/);
for (var nIdx = 0; nIdx < aKeys.length; nIdx++) { aKeys[nIdx] = decodeURIComponent(aKeys[nIdx]); }
return aKeys;
}
};
Mozilla는 모든 경우에 이 기능이 작동함을 증명하는 몇 가지 테스트를 실시하고 있습니다.
대체 토막은 다음과 같습니다.
언급URL : https://stackoverflow.com/questions/14573223/set-cookie-and-get-cookie-with-javascript
'programing' 카테고리의 다른 글
특정 열을 가져오기 위한 휴지 상태 조건 쿼리 (0) | 2022.10.15 |
---|---|
facebook graph api를 사용하여 사용자 프로필 사진을 표시하려면 어떻게 해야 하나요? (0) | 2022.10.15 |
파일 출력이 있는 디렉토리 자동 생성 (0) | 2022.10.14 |
컨텐츠 스크립트를 사용하여 페이지 컨텍스트 변수 및 함수에 액세스합니다. (0) | 2022.10.14 |
JSF backing bean 메서드에서 JSF 컴포넌트를 갱신할 수 있습니까? (0) | 2022.10.14 |