纯js实现的购物车结算功能今日发布

所属分类: 网页特效-其它&杂项    2小时前上传

纯js实现的购物车结算功能 ie兼容8
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

纯js实现的购物车结算功能(共5个文件)

    • index.html

使用方法

var cartController = function($scope){
	$scope.cart = [
		{
			id:100,
			name:'iphone5s',
			quantity:2,
			price:4300
		},
		{
			id:130,
			name:'iphone5',
			quantity:1,
			price:2100			
		},
		{
			id:200,
			name:'imac',
			quantity:5,
			price:14300
		},
		{
			id:110,
			name:'ipid',
			quantity:30,
			price:3300
		}
	];
	//总购买数量
	$scope.totalQuantity = function(){
		var total = 0;
		angular.forEach($scope.cart,function(item){
			total += parseInt(item.quantity);
		});
		return total;
	};
	//总购买价格
	$scope.totalPrice = function(){
		var total = 0;
		angular.forEach($scope.cart,function(item){
			total += parseInt(item.quantity*item.price);
		});
		return total;
	};
	//找一个项目
	$scope.findItem = function(id){
		var index = -1;
		angular.forEach($scope.cart, function(item, key){
			if(item.id === id){
				index = key;
				return;
			};
		});
		return index;
	};
	//移除table
	$scope.remove = function(id){
		var index = $scope.findItem(id);
		if(index !== -1){
			$scope.cart.splice(index,1);	
		};
	};
	//减少一个商品数量
	$scope.reduce = function(id){
		var index = $scope.findItem(id);
		if(index !== -1){
			var item = $scope.cart[index]
			if(item.quantity>1){
				--item.quantity;
			} else{
				var returnKey = confirm("是否从购物车中删除该产品!");
				if(returnKey){
					$scope.remove(id);
				}
			}	
		}
	};
	//增加一个商品数量
	$scope.add = function(id){
		var index = $scope.findItem(id);
		if(index !== -1){
			++$scope.cart[index].quantity;	
		};	
	};
	$scope.$watch('cart',function(newvalue,oldvalue){
		angular.forEach(newvalue, function(item, key){
			if(item.quantity < 1 && item.quantity!==''){
				var returnKey = confirm("是否从购物车中删除该产品!");
				if(returnKey){
					$scope.remove(id);
				}else{
					item.quantity = oldvalue[key].quantity;
				};
			};
		});
	},true);
}

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 其它&杂项

jquery微博评论textarea表情解析插件

调用方法: $.emoticons(options,callback);
  其它&杂项
 1256  0

jquery设置文本文字字体样式插件

一款设置文本文字样式的特效代码,可自定义配置样式,非常的漂亮!
  其它&杂项
 2231  0

基于DataTables创建的响应式表格布局代码

一款响应式table表格代码,根据不同的分辨率友好的显示table表格,非常的实用。
  其它&杂项
 9197  0

jquery浮动固定table表格的行和列响应式特效

jquery浮动固定table表格的行和列响应式特效
  其它&杂项
 5248  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论