溫馨提示×

溫馨提示×

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

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

如何使用JavaScript做簡易的購物車

發(fā)布時間:2021-08-02 11:38:17 來源:億速云 閱讀:113 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細講解有關(guān)如何使用JavaScript做簡易的購物車,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

css

<style>
  table{
   text-align: center;

  }
  table img{
   width: 50px;
  }
 a {
  text-decoration: none;
  color: red;
}
 </style>

body

<table border="1" cellspacing="0">
  <thead>
  <tr>
   <th>全選 <input type="checkbox" id="ckAll"/></th>
   <th>商品</th>
   <th>單價</th>
   <th>數(shù)量</th>
   <th>操作</th>
  </tr>
  </thead>
  <tbody>
   <tr>
    <td><input type="checkbox" name="ck"/></td>
    <td>![](../img2/1.png)</td>
    <td>3</td>
    <td><input type="number" max="10" min="0" step="1" value="2"/></td>
    <td><a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="del">刪除</a></td>
   </tr>
   <tr><td><input type="checkbox" name="ck"/></td>
    <td>![](../img2/2.png)</td>
    <td>3</td>
    <td><input type="number" max="10" min="0" step="1" value="3"/></td>
    <td><a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="del">刪除</a></td>


   </tr>
   <tr><td><input type="checkbox" name="ck"/></td>
    <td>![](../img2/3.png)</td>
    <td>3</td>
    <td><input type="number" max="10" min="0" step="1" value="1"/></td>
    <td><a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="del">刪除</a></td>


   </tr></tbody>
  <tfoot>
  <tr>
   <td colspan="3" align="right">總價:</td>
   <td colspan="2"></td>
  </tr>
  </tfoot>

 </table>
 <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="dels">刪除選中項</a>

js

<script>
  window.onload=function(){
   document.getElementById("ckAll").onclick=function(){//當點擊全選的復合框時觸發(fā)事件
    var cks = document.getElementsByName("ck");//獲取ck對象
    for(var i=0;i<cks.length;i++){ //循環(huán)得到單個tr
     cks[i].checked=this.checked; //得到的每個tr的點擊都等于ckAll的點擊
    }
   }
   var cks = document.getElementsByName("ck");//創(chuàng)建ck對象
   for(var i=0;i<cks.length;i++){ //循環(huán)得到單個tr
    cks[i].onclick=function(){ // 當點擊每個當tr的時候都會觸發(fā)點擊事件
      for(var i=0;i<cks.length;i++){// 循環(huán)得到單個td
       if(!cks[i].checked){ //如果單個特點的點擊等于false 就返回
        document.getElementById("ckAll").checked = false;//那么ckAll就等于false
        return;
       }
      }
     document.getElementById("ckAll").checked = true;//否則就等于true 說明為全選狀態(tài)
    }
   }
   getSum();
    function getSum(){ //計算的方法
     var tbody = document.getElementsByTagName("tbody")[0];//創(chuàng)建tbody對象
     var sum =0;//先定義sum為0
      for(var i =0;i<tbody.children.length;i++){ //循環(huán)得到tr
       var tr = tbody.children[i]; //tbody中的子節(jié)點就是tr
       var td = tr.children; //tr的子節(jié)點是 td
       var price = parseFloat(td[2].innerText);//td的第二列是價格 得到價格
       var count = parseFloat(td[3].children[0].value); //第三列是數(shù)量
       sum+=price*count; //總和就等于價格*數(shù)量
       td[3].children[0].onblur=function(){ //當失去焦點的時候觸發(fā)事件
        getSum();
       }
      }
     var tfoot = document.getElementsByTagName("tfoot")[0]; //創(chuàng)景tfoot對象
     tfoot.children[0].children[1].innerHTML =sum; //tfootd子節(jié)點 等于總和
    }

   var dels = document.getElementsByClassName("del");//創(chuàng)建del對象
   for(var i = 0;i<dels.length;i++){//循環(huán)得到
    dels[i].onclick=function(){
     this.parentNode.parentNode.remove();
     getSum();
    }
   }
   document.getElementsByClassName("dels")[0].onclick=function(){
     var cks = document.getElementsByName("ck");
    for(var i = cks.length-1;i>=0;i--){
      if(cks[i].checked){
       cks[i].parentNode.parentNode.remove();
      }
    }
    getSum();

   }

  }
</script>

效果圖

如何使用JavaScript做簡易的購物車

這個購物車是在學習js時做的,比較簡單,但基本功能還是有的:

  1. 可以全選,單個選擇.

  2. 可以單個的刪除,刪除選中項.

  3. 總計可以根據(jù)數(shù)量的變化而變化.

大家用在線的編輯器查看一下效果會更好.

關(guān)于“如何使用JavaScript做簡易的購物車”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

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

AI