溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jQuery如何模擬淘寶購(gòu)物車功能

發(fā)布時(shí)間:2021-07-09 15:18:29 來(lái)源:億速云 閱讀:150 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹jQuery如何模擬淘寶購(gòu)物車功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

首先我們要實(shí)現(xiàn)的內(nèi)容的需求有如下幾點(diǎn):

1.在購(gòu)物車頁(yè)面中,當(dāng)選中“全選”復(fù)選框時(shí),所有商品前的復(fù)選框被選中,否則所有商品的復(fù)選框取消選中。

2.當(dāng)所有商品前的復(fù)選框選中時(shí),“全選”復(fù)選框被選中,否則“全選”復(fù)選框取消選中。

3.單擊圖標(biāo)-的時(shí)候數(shù)量減一而且不能讓物品小于0并且商品總價(jià)與積分隨之改變。

4.單擊圖標(biāo)+的時(shí)候數(shù)量增加并且商品總價(jià)與積分隨之改變。

5.單擊刪除所選將刪除用戶選中商品,單擊刪除則刪除該商品即可并達(dá)到商品總價(jià)與積分隨之改變。

下面我們就開(kāi)始進(jìn)入代碼:

$(function () {
  subtotal();
  addorminus();
  allcheckbox();
  delet();
  deleselect();
 });
 //設(shè)置 獲取積分和一共金額函數(shù)
 function countmoney() {
  var money = 0; //總金額
  var jifen = 0; //總積分
  $(".cart_td_7").each(function () {
  var m = $(this).text();
  money += Number(m);
  var j = $(this).siblings(".cart_td_4").text();
  var number = $(this).siblings(".cart_td_6").children("input").val();
  jifen += Number(j * number);
  });
  $("#total").html(money);
  $("#integral").html(jifen);
 }
 //小計(jì)
 function subtotal() {
  var obj = $(".cart_td_7");
  obj.each(function () {       //each遍歷每一個(gè)clss為.card_td_7的元素
  var num = $(this).siblings(".cart_td_6").children("input").val(); //購(gòu)物車 選中的當(dāng)前數(shù)量
  var price = $(this).siblings(".cart_td_5").html();   //當(dāng)前選中物品的price
  var money = num * price;      //小計(jì)
  $(this).html(money);
  });
  countmoney();
 }
 //添加或減少數(shù)量
 function addorminus() {
  $(".hand").on("click", function () {
  var num;
  if ($(this).attr("alt") == "minus") {
   num = $(this).next().val();
   if (num == 1) {
   $(this).css("display", "none");
   } else {
   $(this).next().val(--num);
   }
  } else {
   num = $(this).prev().val();
   $(this).prev().val(++num);
   if (num == 1) {
   $(this).siblings("[alt==minus]").css("display", "visible");
   } else { } 
  }
  subtotal();
  });
 }
 //全選或者全不選
 function allcheckbox() {
  $("#allCheckBox").live("change", function () {
  if ($(this).attr("checked") == "checked") {
   $("[name=cartCheckBox]").attr("checked", "checked");
  } else {
   $("[name=cartCheckBox]").attr("checked", false);
  }
  });
  $("[name=cartCheckBox]").live("change", function () {
  var bool = true;
  $("[name=cartCheckBox]").each(function () {
   if ($(this).attr("cheked") != "checked") {
   bool = false;
   }
  });
  if (bool) {
   $("#allCheckBox").attr("checked", "checked");
  } else {
   $("#allCheckBox").attr("checked", false);
  }
  });
 }
 //刪除
 function delet() {
  $(".cart_td_8>a").live("click", function () {
  $(this).parent().parent().prev().remove();
  $(this).parent().parent().remove();
  subtotal();
  });
 }
 //刪除所選 
 function deleselect() {
  $("#deleteAll>img").live("click", function () {
  $("[name=cartCheckBox]").each(function () {
   if ($(this).attr("checked") == "checked") {
   $(this). parent().parent().prev().remove();
   $(this).parent().parent().remove();
   }
  });
  subtotal();
  });
 }

以上是“jQuery如何模擬淘寶購(gòu)物車功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI