이 기사의 예에서는 쿠키를 기반으로 jQuery로 구현된 장바구니에 대해 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
장바구니 쿠키에 제품과 수량을 추가하고, 장바구니에 제품이 있는지 확인하고, 그렇다면 json 문자열을 객체로 변환하고 총 개수를 반환하는 등 jquery 장바구니의 원리를 분석합니다. 쿠키의 현재 제품.
장바구니에 항목 추가:
$(function(){ $(".tc").hide(); var PId = $("#hfPId").val(); // 商品的ID var PName = $("#lblPName").text(); // 商品名称 var PMemberPrice = $("#lblPMemberPrice").text(); // 会员价 var PAmount = 1; var jsonStr = "[{'PId':'" + PId + "','PName':'" + PName + "','PMemberPrice':'" + PMemberPrice + "','PAmount':'" + PAmount + "'}]"; //将商品放入购物车 $("#putCart").click(function(){ setCookie(PId, jsonStr); });
과제:
var setCookie = function(name, value, options){ if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) { value = ''; options.expires = -1; } var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); } var path = options.path ? '; path=' + (options.path) : ''; var domain = options.domain ? '; domain=' + (options.domain) : ''; var secure = options.secure ? '; secure' : '';
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.