这个问题其实很简单的,以前也遇到过,只不过一时没想起来。再记录一遍,提醒下自己! IE中通过js创建表格,tbody元素不可少! new_table = document.createElement("table"); new_tbody = document.createElement("tbody"); //这个不可少! new_tr = document.createElement("tr"); new_td = document.createElement("td"); new_div = document.createElement("div"); new_div.appendChild(document.createTextNode("文本内容")); new_td.appendChild(new_div); new_tr.appendChild(new_td); new_tbody.appendChild(new_tr); //把tr给tbody new_table.appendChild(new_tbody); //tbody再给table