1. 动态表格
效果图:
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>动态表格</title>
<style>
table{
border: 1px solid blue;
margin: auto;
width: 500px;
}
th{
border: 1px solid blue;
height: 60px;
}
td{
border: 1px solid blue;
height: 40px;
text-align: center;
}
div{
text-align: center;
margin: 50px;
}
</style>
</head>
<body>
<div>
<input type="text" placeholder="请输入编号" id="bianhao"