小测验

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
	</head>
	<body>
		<div class="container">
			<div id="app">
				<div>
					id:<input type="text" v-model="id">
					名字:<input type="text" v-model="name">
					职位:<input type="text" v-model="position">
					<input class="btn btn-primary" type="button" value="添加" @click="add">
				</div>
				<table class="table table-bordered table-striped table-hover">
					<thead>
						<tr>
							<th><input type="checkbox"></th>
							<th>ID</th>
							<th>名字</th>
							<th>职位</th>
							<th>操作</th>
						</tr>
					</thead>
					<tbody>
						<tr v-for="person in people" v-bind:key="person.id">
							<td><input type="checkbox"></td>
							<td>{{person.id}}</td>
							<td>{{person.name}}</td>
							<td>{{person.position}}</td>
							<td><button class="btn btn-danger" @click="del(person.id)">删除</button></td>
						</tr>
					</tbody>
				</table>
			</div>
		</div>
		<script src="js/vue.js"></script>
		<script>
			var vm = new Vue({
						el: '#app',
						data: {
							id: null,
							name: null,
							people: [{
									id: 1,
									name: '张三',
									position: '总监'
								},
								{
									id: 2,
									name: '李四',
									position: '低级职员'
								},
								{
									id: 3,
									name: '王五',
									position: '高级职员'
								},
							]

						},
						methods: {
							add() {
								var person = {
									id: this.id,
									name: this.name,
									position: this.position,
								};
								this.people.push(person);
							},
							del(id) {

								this.people.some((data, a) => {
									if (id == data.id) {
										this.people.splice(a, 1);
										return true;
									}
								})
							}
						}
						});
		</script>
	</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值