练习002 列表点击计算价格 (vue.js指令)

需求如下:
在这里插入图片描述
分析:
点击li改变背景色加等于总价,再次点击还原背景色减等于总价。

代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="vue.js" type="text/javascript" charset="utf-8"></script>
		<style type="text/css">
			ul{
				background-color: gold;
				width: 275px;
				padding: 0px;
			}
			li{
				list-style: none;
				background-color: greenyellow;
				margin-top: 5px;
				height: 30px;
				line-height: 30px;
				padding-left: 15px;
				margin-left: 15px;
				width: 230px;
			}
			li:first-child{
				padding-top: 20px;
				text-align: center;
				width: 245px;
				padding-left: 0px;
				background-color: gold;
			}
			li:last-child{
				background-color: gold;
				border-top: 2px solid red;				
				padding-bottom: 20px;
			}
			span{
				float: right;
				margin-right: 15px;
			}
			.color{
				background-color: dodgerblue;
			}
		</style>
	</head>
	<body>
		<div id="div">
			<ul>
				<li>价格表</li>
				<li v-for = '(v,k) in arr' @click = 'fn(k)' v-bind:class ="{ color:v.bol }" >{{ v.name }}<span>单价:{{ v.price }}</span></li>
				<li>总价:<span>{{ prices }}</span></li>
			</ul>
		</div>	
		
	</body>
	<script type="text/javascript">
		var vm = new Vue({
			el:'#div',
			data:{
				arr:[
				{name:'苹果',bol:false,price:200},
				{name:'橘子',bol:false,price:150},
				{name:'香蕉',bol:false,price:260},
				{name:'菠萝',bol:false,price:200}
				],
				prices:0
			},
			methods:{
				fn: function(k){				
					this.arr[k].bol = !this.arr[k].bol;
					if(this.arr[k].bol == true){						
						this.prices += this.arr[k].price
					}
					if(this.arr[k].bol == false){						
						this.prices -= this.arr[k].price
					}
				}
			}
		});		
	</script>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值