博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript 实现购物车页面
阅读量:5046 次
发布时间:2019-06-12

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

跟商城有关系的网站,难免会有购物车的结账界面。

我用javascript实现了增加数量/减少数量,实时计算总金额,删除该商品,选中商品/反选商品/全选/全反选...的操作。
欢迎指点!~
效果如图:(图片有点大,可以到这里看  )
用到的素材:加号 减号 商品图 删除图标 选中的图标和没选中的图标
代码:

	
商品信息 数量 单价(元) 金额(元) 操作

小呀小苹果(一)

3 1900 3800

小呀小苹果(二)

3 1900 3800

小呀小苹果(三)

3 1900 3800
已选:0件  共0

*{ margin: 0;padding: 0;list-style: none;font-size: 16px;font-family: 'arial';font-weight: normal; }table{ width: 1020px;margin: 0 auto;border: 1px solid gray;margin-top: 30px;border-collapse: collapse;text-align: center; }table tr{ height: 100px;line-height: 100px; }thead{ background: black;color: white; }thead tr,tfoot tr{ height: 40px;line-height: 40px; }table img{ float: left;width: 65px;height: 65px;margin-top: 18px; }table input[type="checkbox"]{ width: 32px;height: 32px;-webkit-appearance: none;background: url(./cart/checkbox.png) no-repeat center center;vertical-align:middle }tbody td:nth-child(1){ width: 7%; }tbody td:nth-child(2){ width: 35%; }tbody td:nth-child(3){ width: 13%; }tbody td:nth-child(4){ width: 15%; }tbody td:nth-child(5){ width: 15%; }tbody td:nth-child(6){ width: 15%; }tbody tr{ border-bottom: 1px solid black; }table .add,table .dec,table .del{ display: inline-block;width: 14px;height: 21px;cursor: pointer; }table .add{ background: url(./cart/add.png) no-repeat center center; }table .dec{ background: url(./cart/dec.png) no-repeat center center; }table .num{ display: inline-block;width: 57px;margin: 0 18px;height: 39px;line-height: 39px;border: 1px solid #b0b0b0;background: #d4d4d4; }table .del{ width: 18px;background: url(./cart/del.png) no-repeat; }table .money,table .total{ color: red; }table .choosen{ color: #3083ff; }table .sure{ width: 100%;height: 100%;background: #3083ff;color: #fff;border: none;cursor: pointer; }input[type='checkbox']:checked{ background: url(./cart/check.png) no-repeat center center; }

window.onload = function(){	// 按顺序为:list个数 加 数量 减 删 选择框 金额 单价 选中的个数	// list个数 不包括thead	var oListNumber = document.getElementsByClassName('add').length;	var oAdds = document.getElementsByClassName('add');	var oNums = document.getElementsByClassName('num');	var oDecs = document.getElementsByClassName('dec');	var oDels = document.getElementsByClassName('del');	var oInputs = document.getElementsByTagName('input');	var oMoneys = document.getElementsByClassName('money');	var oPers = document.getElementsByClassName('per');	var oAllChecked = false; //全选	var othercheckbox =0; //除了全选以外的其他checkbox	changeMoney();	// checkbox点击事件	for(var i =0;i

转载于:https://www.cnblogs.com/hiuman/p/7347386.html

你可能感兴趣的文章
Activity和Fragment生命周期对比
查看>>
OAuth和OpenID的区别
查看>>
android 分辨率自适应
查看>>
查找 EXC_BAD_ACCESS 问题根源的方法
查看>>
国外媒体推荐的5款当地Passbook通行证制作工具
查看>>
日常报错
查看>>
list-style-type -- 定义列表样式
查看>>
hibernate生成表时,有的表可以生成,有的却不可以 2014-03-21 21:28 244人阅读 ...
查看>>
mysql-1045(28000)错误
查看>>
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
1.jstl c 标签实现判断功能
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
超详细的Guava RateLimiter限流原理解析
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>