本文实例为大家分享了javascript实现向表格中动态加载数据的具体代码,供大家参考,具体内容如下
首先在HTML中编写表格信息
1
2
3
4
5
6
7
8
9
10
11
12
13
|
< table width = "500px" border = "1" > //表格头部信息 < thead > < tr > < th >编号</ th > < th >姓名</ th > < th >身份</ th > < th >操作</ th > </ tr > </ thead > //表格内容信息 < tbody id = "tbBody" ></ tbody > </ table > |
然后编写js代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<!--script中的type默认为 "text/javascript" --> <script type= "text/javascript" > //创建一个数组 var per=[ {id: '001' ,name: '张三' ,job: '学生' }, {id: '002' ,name: '张三' ,job: '学生' }, {id: '003' ,name: '张三' ,job: '学生' }, {id: '004' ,name: '张三' ,job: '学生' } ]; //打开窗口就执行 window.onload= function () { var tbody=document.getElementById( 'tbBody' ); for ( var i=0;i<per.length;i++){ var trow=getDataRow(per[i]); tbody.appendChild(trow) } } //获取数据 function getDataRow(h) { //创建行 var row=document.createElement( 'tr' ); /*创建第一列id属性*/ //创建第一列id var idCell=document.createElement( 'td' ); //向id填充数据 idCell.innerText=h.id; //加入行 row.appendChild(idCell); /*创建第二列属性name 和上面类似*/ var nameCell=document.createElement( 'td' ); nameCell.innerText=h.name; row.appendChild(nameCell); /*创建第三列属性job 和上面类似*/ var jobCell=document.createElement( 'td' ); jobCell.innerText=h.job; row.appendChild(jobCell); //到这里,json中的数据已经添加到表格里面了,下面为每行末尾添加删除按钮 /*创建第四列属性 删除属性*/ var deleteCell=document.createElement( 'td' ); //加入行 row.appendChild(deleteCell); //创建一个删除按钮控件 var buttonCell=document.createElement( 'input' ); //setAttribute()方法创建或改变某个新属性,如果指定属性已存在,则只设置该值 buttonCell.setAttribute( 'type' , 'button' ); buttonCell.setAttribute( 'value' , '删除' ); //删除功能 buttonCell.onclick= function () { if (confirm( "确定删除这一行吗?" )){ //找到按钮所在的行之后进行删除 parentNode节点查找 this .parentNode.parentNode.parentNode.removeChild( this .parentNode.parentNode); } } //吧删除按钮控件加入第四列属性 删除属性 deleteCell.appendChild(buttonCell); //返回行的数据 return row; } </script> |
下面是操作后的显示图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_40825627/article/details/84572979