博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery实现购物车数量的加减以及总价
阅读量:5371 次
发布时间:2019-06-15

本文共 1421 字,大约阅读时间需要 4 分钟。

  <!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=""></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>

转载于:https://www.cnblogs.com/xueyu-1/p/5640884.html

你可能感兴趣的文章
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I &amp; II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>
php环境搭建脚本
查看>>
php 编译常见错误
查看>>
MES架构
查看>>
hdu 2767(tarjan)
查看>>
sklearn之分类模型混淆矩阵和分类报告
查看>>
MySQL各存储引擎
查看>>
项目--简单导出CSV文件
查看>>
Oracle session相关数据字典(一)
查看>>
BZOJ 3399 [Usaco2009 Mar]Sand Castle城堡(贪心)
查看>>
WCF(一) 简单的认知
查看>>