博客列表 >运用js动态添加表格数据-2019年1月18日

运用js动态添加表格数据-2019年1月18日

超超的博客
超超的博客原创
2019年01月18日 17:13:06603浏览
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>toList</title>
<style>
        table,th,td{
            border: 1px solid #666;
        }
        table {
            width: 500px;
            text-align: center;
            border-collapse: collapse;
        }
        table caption {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        /* 这里必须在nth-of-type(1)前添加父元素,否则thead,tbody中的第一行都会生效 */
        thead tr:nth-of-type(1) {
            background-color: #ccc;
        }

</style>
</head>
<body>
<table id="list">
	<caption>文具列表</caption>
	<thead>
		<th>序号</th>
		<th>名称</th>
		<th>单价</th>
		<th>数量</th>		
	</thead>
	<tbody>
	</tbody>	
</table>
<script>
	var data = [//创建js数据数组
	{id:1, product:'铅笔', price:20, number:30 },
	{id:2, product:'橡皮', price:30, number:40 },
	{id:3, product:'***', price:40, number:50 },
	{id:4, product:'本子', price:50, number:60 }	
	];
	var list = document.getElementById('list');//通过获取id获取元素list
	var tbody = list.tBodies[0];//获取list表格的第一个tbody
	for(i = 0;i < data.length; i++){//用for循环,定义变量i,与数组data长度作比较
		var tr = document.createElement('tr');//创建tr元素
		Object.keys(data[i]).forEach(function(key){//用forEach遍历数组data
			tr.innerHTML += '<td>' + data[i][key] + '</td>';//将td元素及data中内容写入tr中
		})
		tbody.appendChild(tr); //在tbody中添加tr
	}
</script>
</body>
</html>


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议