不是IE的bug,是你对dom结构的理解有误function draw()
{
  var temp = tr1.cloneNode(true);
  temp.id=null;
  table1.firstChild.insertBefore(temp);
  alert("行数为:"+table1.rows.length);
}