jQuery实现购物车数量的加减以及总价

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery实现购物车数量的加减以及总价相关的知识,希望对你有一定的参考价值。

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
  <title>jQuery实现购物车多物品数量的加减+总价计算</title>
  <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
  <script>
  $(function(){
  $(".add").click(function(){
  var t=$(this).parent().find(‘input[class*=text_box]‘);
  t.val(parseInt(t.val())+1)
  setTotal();
  })
  $(".min").click(function(){
  var t=$(this).parent().find(‘input[class*=text_box]‘);
  t.val(parseInt(t.val())-1)
  if(parseInt(t.val())<0){
  t.val(0);
  }
  setTotal();
  })
  function setTotal(){
  var s=0;
  $("#tab td").each(function(){
  s+=parseInt($(this).find(‘input[class*=text_box]‘).val())*parseFloat($(this).find(‘span[class*=price]‘).text());
  });
  $("#total").html(s.toFixed(2));
  }
  setTotal();
   
  })
  </script>
  </head>
  <body>
  <table id="tab">
  <tr>
  <td>
  <span>单价:</span><span class="price">1.50</span>
  <input class="min" name="" type="button" value="-" />
  <input class="text_box" name="" type="text" value="1" />
  <input class="add" name="" type="button" value="+" />
  </td>
  </tr>
  <tr>
  <td>
  <span>单价:</span><span class="price">3.95</span>
  <input class="min" name="" type="button" value="-" />
  <input class="text_box" name="" type="text" value="1" />
  <input class="add" name="" type="button" value="+" />
  </td>
  </tr>
  </table>
   
  <p>总价:<label id="total"></label></p>
  </body>
  </html>

以上是关于jQuery实现购物车数量的加减以及总价的主要内容,如果未能解决你的问题,请参考以下文章

vue.js实现完整购物车实例

jquery问题购物车加减按钮

Vue购物车案例(全选,反选,加入,删除,加减,总价,数量)

js 购物车的数量加减,对应的总价也随机变化

用html做一个购物车,能实现简单的产品数量和价格的加减就行。最后能计算出提交物品价格的总和。

vue入门------简单购物车功能实现(全选,数量加减,价格加减)