Javascript(JS)网页–动态生成表格,供大家参考,具体内容如下
在网页中,动态生成列表的内容,将数组中的object加入到列表中(没学到数据库)。在HTML中创建thead,然后通过JavaScipt动态生成tbody。并且在每行最后申城一个单元格,加入删除操作,点击删除可以删除此行。
动态生成表格 table { border-collapse: collapse; margin-top: 200px; margin-left: 500px; } table th{ border: 1px solid black; width: 80px; height: 40px; text-align: center; background-color: cornsilk; } table td{ border: 1px solid black; width: 80px; height: 40px; text-align: center; }
姓名 科目 成绩 操作


