<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>图书销售订单</title>
<link rel="stylesheet" href="css/style.css" type="text/css" / </head>
<body>
<div id="container">
<h1>热卖图书销售表</h1>
<table class="style-table">
<thead>
<tr>
<th>书名</th>
<th>数量</th>
<th>价格</th>
<th>总价</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>蛤蟆先生去看心理医生</td>
<td>50</td>
<td>¥38</td>
<td>1900</td>
<td>
<input
type="button"
name=""
id=""
value="修改数量"
onclick="changeoper(this)"/>
<input
type="button"
name=""
id=""
value="删除信息"
onclick="delectoper(this)"/>
</td>
</tr>
<tr align="center">
<td>活着</td>
<td>28</td>
<td>¥45</td>
<td>1260</td>
<td>
<input
type="button"
name=""
id=""
value="修改数量"
onclick="changeoper(this)"/>
<input
type="button"
name=""
id=""
value="删除信息"
onclick="delectoper(this)"/>
</td>
</tr>
<tr align="center">
<td>你当像鸟飞往你的山</td>
<td>15</td>
<td>¥35</td>
<td>525</td>
<td>
<input type="button" name="" id="" value="修改数量 " onclick="changeoper(this)"/>
<input type="button" name="" id="" value="删除信息" onclick="delectoper(this)"/>
</td>
</tbody>
</table>
<div class="add">
<h3>添加订单</h3>
<h6>
书名:<input
type="text"
name=""
id="bookName"
placeholder="请输入书名"/>
</h6>
<h6>
数量:<input type="text"name=""id="num"class="inputNum'"/>
单价:<input type="text"name=""id="price"class="inputNum"/>
</h6>
<button id="addBtn">增加订单</button>
</div>
</div>
<script src="js/order.js"></script>
</body>
</html>
图书销售订单
最新推荐文章于 2024-11-18 21:23:14 发布