欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery动态生成表格讲解

程序员文章站 2022-09-06 08:34:53
....

jquery动态生成表格讲解

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">
	<title></title>
	<style>
		#box{
			width: 300px;
			height: 200px;
			background-color: pink;
			position: absolute;
			top:30px;
			left:0;
			display: none;
		}
	</style>
</head>
<body>
	<button id="btn1">添加</button>
	<table width="300" border="1" cellspacing="0">
		<tr>
			<th>编号</th>
			<th>姓名</th>
			<th>操作</th>
		</tr>
		<tbody id="tb">
			<tr>
				<td>01</td>
				<td>张三</td>
				<td><a href="javascript:void(0)" class="del">删除</a></td>
			</tr>
		</tbody>
	</table>
	<div id="box">
		<input type="text" id="code">
		<input type="text" id="name">
		<button id="btn2">确定</button>
	</div>
	<script src="jquery.min.js"></script>
	<script>
		$("#btn1").click(function(){
			$("#box").show();//让粉盒子显示出来
		})
		$("#btn2").click(function(){
			var $code=$("#code").val();//获取编号
			var $name=$("#name").val();//获取姓名
			// 拼接字符串
			var html=`<tr>
				<td>${$code}</td>
				<td>${$name}</td>
				<td><a href="javascript:void(0)" class='del'>删除</a></td>
			</tr>`;
			$("#tb").append(html);
			// 让粉盒子消失
			$("#box").hide();
			// 点击删除按钮的时候让当前的一行删除
			$(".del").click(function(){
				$(this).parent().parent().remove();
			})
		})
		
		
		
	</script>
</body>
</html>

jquery动态生成表格讲解
jquery动态生成表格讲解

本文地址:https://blog.csdn.net/weixin_47612165/article/details/109585624

相关标签: jQuery