功能:写一个图书购物的表格,可以修改商品数量,移除商品,计算总价,当全部商品移除时显示购物车为空。如下图
第一步:先建立 html,css 和 js,分别取名 index.html ,style.css,main.js
先写 index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="app">
<table>
<thead>
<tr>
<th></th>
<th>书籍名称</th>
<th>出版日期</th>
<th>价格</th>
<th>购买数量</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr v-for="(item) in books">
<td>{
{item.id}}</td>
<td>{
{item.name}}</td>
<td>{
{item.date}}</td>
<td>{
{item.price}}</td>
<td>
{
{item.count}}
</td>
<td><button>移除</button></td>
</tr>
</tbody>
</table>
<h2>总价格:{
{}}</h2>
</div>
<script src="../js/vue.js"></script>
<script src="main.js"></script>
</body>
</html>
style.css
table {
border: 1px solid #e9e9e9;
border-collapse: collapse;
border-spacing: 0;
}
th, td {
padding: 8px 16px;
border: 1px solid #e9e9e9;
text-ali