cookie實現購物車新增
阿新 • • 發佈:2019-05-09
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>購物頁面</title> <style> img{ width:300px; height:300px; } ul{ list-style:none; padding:0; margin:0; } button{ width:200px; height:50px; text-align: center; color:white; background:black; font-size: 30px; cursor: pointer; } a{ display: block; margin:0 auto; width:200px; height:80px; text-align: center; line-height :80px; color:white; background:red; font-size: 60px; font-weight: 900; text-decoration: none; cursor: pointer; } .goods li{ display:inline-block; border:1px solid #ddd; padding:10px; margin:10px; text-align: center; } .goods li:hover{ background-color:#efefef; } .goods .price{ color:#f00; font-weight:900; } .goods .price::before{ content:"¥"; } </style> <script src = "../cookie.js"></script> <script> window.onload = function(){ var goods = document.getElementsByClassName('goods')[0]; // 用於儲存購物車商品資訊 var carList = []; // 先獲取當前cookie var cookies = document.cookie.split('; '); for(var i=0;i<cookies.length;i++){ var arr = cookies[i].split('='); if(arr[0] === 'carlist'){ carList = JSON.parse(arr[1]); } } // getcookie(carList); // 事件委託 goods.onclick = function(e){ e = e || window.event; var target = e.target || e.srcElement; // 新增到購物車 if(target.tagName === 'BUTTON'){ // 獲取當前li var currentLi = target.parentElement.parentElement; var children = currentLi.children; var currentGUID = currentLi.getAttribute('data-guid'); // 先建立一個物件儲存當前商品資訊 var goodsObj = {}; goodsObj.guid = currentGUID; goodsObj.qty = 1; goodsObj.name = children[1].innerHTML; goodsObj.price = children[2].innerHTML; goodsObj.imgUrl = children[0].src; // 如果cookie為空,則直接新增 if(carList.length===0){ // 新增到carList carList.push(goodsObj); }else{ // 先判斷cookie中有無相同的guid商品 for(var i=0;i<carList.length;i++){ // 如果商品已經存在cookie中,則數量+1 if(carList[i].guid === currentGUID){ carList[i].qty++; break; } } // 如果原cookie中沒有當前商品 if(i===carList.length){ // 新增到carList carList.push(goodsObj); } } // 存入cookie // 把物件/陣列轉換誠json字串:JSON.stringify() document.cookie = 'carlist=' + JSON.stringify(carList); } } } </script> </head> <body> <ul class="goods"> <li data-guid="g01"> <img src="images/2.png"> <p>短袖襯衣</p> <p class="price">98.88</p> <div class="add2cart"> <button>新增到購物車</button> </div> </li> <li data-guid="g02"> <img src="images/3.png"> <p>短袖襯衣2</p> <p class="price">88.88</p> <div class="add2cart"> <button>新增到購物車</button> </div> </li> <li data-guid="g03"> <img src="images/4.png"> <p>短袖襯衣3</p> <p class="price">9.98</p> <div class="add2cart"> <button>新增到購物車</button> </div> </li> <li data-guid="g04"> <img src="images/5.png"> <p>短袖襯衣4</p> <p class="price">8.88</p> <div class="add2cart"> <button>新增到購物車</button> </div> </li> </ul> <a href="res.html">去結算</a> </body> </html> <!--購物車頁面 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>購物車</title> <style> #carList li{ position:relative; padding-bottom:15px; margin-bottom:15px; border-bottom:1px solid #ddd; } #carList img{ display:block; width:100px; } #carList li .btn-close{ position:absolute; top:0; right:0; padding:0 5px; cursor:default; } #carList li .btn-close:hover{ background-color:#f00; color:#fff; } .subPrice{ padding:5px 20px; color:#f00; font-weight:900; text-align:right; } #carList .price{ color:#f00; } .price::before{ content:'¥'; font-size:11px; } #carList .price span{ font-size:11px; } </style> <script src ="../cookie.js"></script> <script> window.onload = function(){ /* 讀取cookie中的carlist 把json字串轉換成物件/陣列:JSON.parse() json字串格式: 1.必須用雙引號 2.不能右註釋 */ var oCarList = document.getElementById('carList'); var oSubPrice = oCarList.nextElementSibling; var btnClear = document.getElementById('btnClear'); var carList; var cookies = document.cookie.split('; '); for(var i=0;i<cookies.length;i++){ var arr = cookies[i].split('='); if(arr[0] === 'carlist'){ console.log(JSON.parse(arr[1])); carList = JSON.parse(arr[1]); } } // getcookie(carList); var subPrice = 0; if(carList){ var ul = document.createElement('ul'); for(var i=0;i<carList.length;i++){ var li = document.createElement('li'); // 給每個li新增data-guid屬性 li.setAttribute('data-guid',carList[i].guid); // 商品名 var title = document.createElement('h4'); title.innerHTML = carList[i].name; // 商品價格 var price = document.createElement('p'); price.className = 'price'; price.innerHTML = carList[i].price +" X "+ carList[i].qty; // 商品圖片 var img = document.createElement('img'); img.src = carList[i].imgUrl; // 新增刪除按鈕 var btnClose = document.createElement('span'); btnClose.innerHTML = '×'; btnClose.className = 'btn-close'; // 計算總價 subPrice += carList[i].price*carList[i].qty; li.appendChild(title); li.appendChild(price); li.appendChild(img); li.appendChild(btnClose); ul.appendChild(li); } // 寫入頁面 oCarList.appendChild(ul); // 寫入總價 // toFixed(n)獲取小數點後n位(自動四捨五入,Number型別的方法) oSubPrice.innerHTML = '<span class="price">' + subPrice.toFixed(2) + '</span>'; } // 刪除商品 oCarList.onclick = function(e){ e = e || window.event; var target = e.target || e.srcElement; // 是否點選了刪除按鈕 if(target.className === 'btn-close'){ var currentLi = target.parentElement; // 獲取當前guid var currentGUID = currentLi.getAttribute('data-guid'); // 刪除cookie中對應的商品 // 根據guid取對比 for(var i=0;i<carList.length;i++){ // 找出要刪除的商品 if(carList[i].guid === currentGUID){ carList.splice(i,1); break; } } // 更新cookie document.cookie = 'carlist=' + JSON.stringify(carList); // 刪除li節點 currentLi.parentElement.removeChild(currentLi); } } // 清空購物車 // 1、刪除DOM節點 // 2、刪除cookie btnClear.onclick = function(){ oCarList.innerHTML = ''; oSubPrice.innerHTML = ''; // 利用設定有效期位過期事件來達到刪除cookie的效果 var now = new Date(); now.setDate(now.getDate()-7); document.cookie = 'carlist=xx;expires=' + now; } } </script> </head> <body> <h1>購物車</h1> <div id="carList"> </div> <div class="subPrice"></div> <a href="#" id="btnClear">清空購物車</a> </body> </html>
&nbs