我正在学习这些东西并试图理解它,所以我使用它而不是 innerhtml。
我的代码:
<script>
function load() {
"use strict";
var t = document.createElement("table"),
tb = document.createElement("tbody"),
tr = document.createElement("tr"),
td = document.createElement("td");
var b = document.createElement("b");
b.appendChild(document.createTextNode(" name!"));
td.appendChild(document.createTextNode("Hello"));
td.appendChild(b);
t.style.width = "100%";
t.style.borderCollapse = 'collapse';
t.border=1;
// note the reverse order of adding child
tr.appendChild(td);
tb.appendChild(tr);
t.appendChild(tb);
// more code to populate table rows and cells
document.getElementById("theBlah").appendChild(t);
alert(t.innerHTML);
}
</script>
</head>
<body onload="load()">
问题是,onload()
不显示<table>
标签,而是显示<tbody>
...知道为什么吗?
最后,在这段代码中:
var t = document.createElement("table"),
tb = document.createElement("tbody"),
tr = document.createElement("tr"),
td = document.createElement("td");
即使我只为 t 使用 Var 关键字,而不是为其他关键字,为什么即使“使用严格”已打开,它也不会抱怨?事实上,如果我在“tb”、“tr”、“td”前面添加一个“var”,那么它会引发错误......谢谢!