js 表格插入指定行
Posted 张主任好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 表格插入指定行相关的知识,希望对你有一定的参考价值。
js在table指定tr行上或下面添加tr行
function onAddTR(trIndex)
{
var tb = document.getElementById("tb1");
var newTr = tb.insertRow(trIndex);//添加新行,trIndex就是要添加的位置
var newTd1 = newTr.insertCell();
newTd1.innerhtml = "这是新行,位置:" + trIndex;
var newTd2 = newTr.insertCell();
newTd2.innerHTML = "这是新行,位置:" + trIndex;
}
http://www.cnblogs.com/caicaizi/p/4952551.html
以上是关于js 表格插入指定行的主要内容,如果未能解决你的问题,请参考以下文章