无法在mozila中使用TOM和javascript显示页脚

问题描述

| 如何在Mozilla中像这样显示页脚?
<html>
<TABLE ID=\"oTable_1\" BORDER=\"0\" BGCOLOR=\"lightslategray\" width=100% >
<TBODY ID=\"oTBody0_1\"></TBODY>
<TBODY ID=\"oTBody0_2\"></TBODY></TABLE>
<SCRIPT LANGUAGE=\"JavaScript\">

var oTHead = oTable_1.createTHead();
var oTFoot = oTable_1.createTFoot();
var oCaption = oTable_1.createCaption();
var oRow,oCell;

//code  to display table body
//but when i am displayin footer its not displaying in mozila ..working in chrome and IE

oRow = oTFoot.insertRow();
oCell = oRow.insertCell();
oCell.innerHTML = \'<center> hi mozilla </center>\' ;
oCell.colSpan = \"12\";
</script>
</html>
    

解决方法

        尝试
oRow = oTFoot.insertRow(-1);
oCell = oRow.insertCell(-1)
index参数对于
insertRow()
insertCell()
不是可选的:   如果
index
等于-1或等于数字   行中,该行被附加为   最后一行。如果省略
index
或   大于行数   错误将导致。