题目:在页面中有一个1行2列的表格,其中表格行(tr)的id为r1,下列( )能在表格中增加一列,并且将这一列显示在最前面。 (选择一项)
A. document.getElementById("r1").Cells(1);
B. document.getElementById("r1").Cells(0);
C. document.getElementById("r1").insertCells(0);
D. document.getElementById("r1").insertCells(1);
答案:评论后可见此内容