为了账号安全,请及时绑定邮箱和手机立即绑定

用DOM给网页插入表格时无显示。

用DOM给网页插入表格时无显示。

小怪兽爱吃肉 2018-11-13 13:10:42
<!DOCTYPE html><html> <head>  <title> new document </title>  </head><script type="text/javascript">//创建tablevar table = document.createElement("table");table.border = "1";table.width = "100%";//创建tbodyvar tbody = document.createElement("tbody");table.appendChild(tbody);//创建第一行tbody.insertRow(0);tbody.rows[0].insertCell(0);tbody.rows[0].cells[0].appendChild(document.createTextNode("Cell 1,1"));tbody.rows[0].insertCell(1);tbody.rows[0].cells[1].appendChild(document.createTextNode("Cell 2,1"));//创建第二行tbody.insertRow(1);tbody.rows[1].insertCell(0);tbody.rows[1].cells[0].appendChild(document.createTextNode("Cell 1,2"));tbody.rows[1].insertCell(1);tbody.rows[1].cells[1].appendChild(document.createTextNode("Cell 2,2"));//将表格添加到文档主体中document.body.appendChild(table);</script><body></body></html>表格在页面中没有加载,控制台报错如下Uncaught TypeError: Cannot read property 'appendChild' of null     at 11.html:31错误指向这一行 document.body.appendChild(table);
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 481 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信