博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jq商城购物车
阅读量:6198 次
发布时间:2019-06-21

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

  <!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>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>jquery特效制作复选框,全选,反选,取消,购物车,统计价格,统计,淘宝</title>
   
  <link href="" rel="stylesheet" type="text/css" />
   
  <script type="text/javascript" src=""></script>
  <script type="text/javascript" src=""></script>
  <script type="text/javascript">
  $(document).ready(function () {
   
  //jquery特效制作复选框全选反选取消(无插件)
  // 全选
  $(".allselect").click(function () {
  $(".gwc_tb2 input[name=newslist]").each(function () {
  $(this).attr("checked", true);
  // $(this).next().css({ "background-color": "#3366cc", "color": "#ffffff" });
  });
  GetCount();
  });
   
  //反选
  $("#invert").click(function () {
  $(".gwc_tb2 input[name=newslist]").each(function () {
  if ($(this).attr("checked")) {
  $(this).attr("checked", false);
  //$(this).next().css({ "background-color": "#ffffff", "color": "#000000" });
  } else {
  $(this).attr("checked", true);
  //$(this).next().css({ "background-color": "#3366cc", "color": "#000000" });
  }
  });
  GetCount();
  });
   
  //取消
  $("#cancel").click(function () {
  $(".gwc_tb2 input[name=newslist]").each(function () {
  $(this).attr("checked", false);
  // $(this).next().css({ "background-color": "#ffffff", "color": "#000000" });
  });
  GetCount();
  });
   
  // 所有复选(:checkbox)框点击事件
  $(".gwc_tb2 input[name=newslist]").click(function () {
  if ($(this).attr("checked")) {
  //$(this).next().css({ "background-color": "#3366cc", "color": "#ffffff" });
  } else {
  // $(this).next().css({ "background-color": "#ffffff", "color": "#000000" });
  }
  });
   
  // 输出
  $(".gwc_tb2 input[name=newslist]").click(function () {
  // $("#total2").html() = GetCount($(this));
  GetCount();
  //alert(conts);
  });
  });
  //******************
  function GetCount() {
  var conts = 0;
  var aa = 0;
  $(".gwc_tb2 input[name=newslist]").each(function () {
  if ($(this).attr("checked")) {
  for (var i = 0; i < $(this).length; i++) {
  conts += parseInt($(this).val());
  aa += 1;
  }
  }
  });
  $("#shuliang").text(aa);
  $("#zong1").html((conts).toFixed(2));
  $("#jz1").css("display", "none");
  $("#jz2").css("display", "block");
  }
  </script>
   
   
  </head>
  <body>
   
  <div class="gwc" style=" margin:auto;">
  <table cellpadding="0" cellspacing="0" class="gwc_tb1">
  <tr>
  <td class="tb1_td1"><input id="Checkbox1" type="checkbox" class="allselect"/></td>
  <td class="tb1_td1">全选</td>
  <td class="tb1_td3">商品</td>
  <td class="tb1_td4">商品信息</td>
  <td class="tb1_td5">数量</td>
  <td class="tb1_td6">单价</td>
  <td class="tb1_td7">操作</td>
  </tr>
  </table>
   
  <!---商品加减算总数---->
  <script type="text/javascript">
  $(function () {
  var t = $("#text_box1");
  $("#add1").click(function () {
  t.val(parseInt(t.val()) + 1)
  setTotal(); GetCount();
  })
  $("#min1").click(function () {
  t.val(parseInt(t.val()) - 1)
  setTotal(); GetCount();
  })
  function setTotal() {
   
  $("#total1").html((parseInt(t.val()) * 9).toFixed(2));
  $("#newslist-1").val(parseInt(t.val()) * 9);
  }
  setTotal();
  })
  </script>
   
  <table cellpadding="0" cellspacing="0" class="gwc_tb2">
  <tr>
  <td class="tb2_td1"><input type="checkbox" value="1" name="newslist" id="newslist-1" /></td>
  <td class="tb2_td2"><a href=""><img src=""/></a></td>
  <td class="tb2_td3"><a href="">产品标题</a></td>
  <td class="tb1_td4">一件</td>
  <td class="tb1_td5">
  <input id="min1" name="" style=" width:20px; height:18px;border:1px solid #ccc;" type="button" value="-" />
  <input id="text_box1" name="" type="text" value="1" style=" width:30px; text-align:center; border:1px solid #ccc;" />
  <input id="add1" name="" style=" width:20px; height:18px;border:1px solid #ccc;" type="button" value="+" />
  </td>
  <td class="tb1_td6"><label id="total1" class="tot" style="color:#ff5500;font-size:14px; font-weight:bold;"></label></td>
  <td class="tb1_td7"><a href="">删除</a></td>
  </tr>
  </table>
   
  <!---商品加减算总数---->
  <script type="text/javascript">
  $(function () {
  var t = $("#text_box2");
  $("#add2").click(function () {
  t.val(parseInt(t.val()) + 1)
  setTotal(); GetCount();
  })
  $("#min2").click(function () {
  t.val(parseInt(t.val()) - 1)
  setTotal(); GetCount();
  })
  function setTotal() {
   
  $("#total2").html((parseInt(t.val()) * 8).toFixed(2));
  $("#newslist-2").val(parseInt(t.val()) * 8);
  }
  setTotal();
  })
  </script>
  <table cellpadding="0" cellspacing="0" class="gwc_tb2">
  <tr>
  <td class="tb2_td1"><input type="checkbox" value="1" name="newslist" id="newslist-2" /></td>
  <td class="tb2_td2"><a href=""><img src=""/></a></td>
  <td class="tb2_td3"><a href="">产品标题</a></td>
  <td class="tb1_td4">一件</td>
  <td class="tb1_td5">
  <input id="min2" name="" style=" width:20px; height:18px;border:1px solid #ccc;" type="button" value="-" />
  <input id="text_box2" name="" type="text" value="1" style=" width:30px; text-align:center; border:1px solid #ccc;" />
  <input id="add2" name="" style=" width:20px; height:18px;border:1px solid #ccc;" type="button" value="+" />
  </td>
  <td class="tb1_td6"><label id="total2" class="tot" style="color:#ff5500;font-size:14px; font-weight:bold;"></label></td>
  <td class="tb1_td7"><a href="">删除</a></td>
  </tr>
  </table>
   
  <!---总数---->
  <script type="text/javascript">
  $(function () {
  $(".quanxun").click(function () {
  setTotal();
  //alert($(lens[0]).text());
  });
  function setTotal() {
  var len = $(".tot");
  var num = 0;
  for (var i = 0; i < len.length; i++) {
  num = parseInt(num) + parseInt($(len[i]).text());
   
  }
  //alert(len.length);
  $("#zong1").text(parseInt(num).toFixed(2));
  $("#shuliang").text(len.length);
  }
  //setTotal();
  })
  </script>
  <table cellpadding="0" cellspacing="0" class="gwc_tb3">
  <tr>
  <td class="tb1_td1"><input id="checkAll" class="allselect" type="checkbox" /></td>
  <td class="tb1_td1">全选</td>
  <td class="tb3_td1">
  <input id="invert" type="checkbox" />反选
  <input id="cancel" type="checkbox" />取消
  </td>
  <td class="tb3_td2">已选商品 <label id="shuliang" style="color:#ff5500;font-size:14px; font-weight:bold;">0</label> 件</td>
  <td class="tb3_td3">合计(不含运费):<span>¥</span><span style=" color:#ff5500;"><label id="zong1" style="color:#ff5500;font-size:14px; font-weight:bold;"></label></span></td>
  <td class="tb3_td4"><span id="jz1">结算</span><a href="" style=" display:none;" class="jz2" id="jz2">结算</a></td>
  </tr>
  </table>
   
  </div>
   
  </body>
  </html>
   

转载于:https://www.cnblogs.com/-qiang/p/6514193.html

你可能感兴趣的文章
【火炉炼AI】机器学习046-图像边缘的检测方法
查看>>
对称加密与非对称加密
查看>>
插件化 学习笔记
查看>>
产品经理与UI如何开展“高效”沟通?
查看>>
社区产品策划4元素:个人中心、内容、消息盒子、导航
查看>>
面试 7:快慢指针法玩转链表算法面试(一)
查看>>
「 iOS知识小集 」2018 · 第 20 期
查看>>
中间人攻击利用框架bettercap测试
查看>>
Spring Cloud Gateway 深入
查看>>
CSS Scroll Indicator —— 纯CSS 滚动指示器
查看>>
OpenGL ES 2 0 Making the Hardware Work for You
查看>>
快速简单的定制一个时间轴布局(LinearLayout)(2)
查看>>
leetcode系列 - Add Strings(Easy)
查看>>
Java Flight Recorder小试牛刀
查看>>
十、ListView 基本使用(一)
查看>>
Maven的profile文件过滤引起的字符编码BUG
查看>>
理解JVM(六):线程安全和锁优化
查看>>
牵引力就业部总监为你揭秘,IT行业面试几大技巧
查看>>
关闭 nginx 服务的正确姿势
查看>>
JVM(六)为什么新生代有两个Survivor分区?
查看>>