query 删除table行< table > < tbody > < tr > < td > 这行原来就有 </ td > < td >< button class = " del " > 删除 </ button ></ td > </ tr > < tr > < td > 这行原来就有 </ ...
分类:
Web程序 时间:
2017-06-09 11:50:06
阅读次数:
225
CreateTime--2017年4月15日08:09:43 Author:Marydon js-动态插入、删除table行 用到table的insertRow()和deleteRow()方法 <input id = "userName" type="button" value="增加行" oncl ...
分类:
Web程序 时间:
2017-04-15 09:45:07
阅读次数:
199
html{ background:none;}
table{
width:100%;
border:1px solid #CCC;
border-top:none;
border-left:none;
}
table td, table th{
text-align:left;
border-top:1px solid #cccccc;
border...
分类:
Web程序 时间:
2015-05-28 10:59:57
阅读次数:
174
function insertRows(){
var tempRow=0;
var tbl=document.getElementById("dictTbl");
tempRow=tbl.rows.length; //获取当前table的行数
//alert(tempRow);
var Rows=tbl.rows;//类似数组的Rows
var newRo...
分类:
Web程序 时间:
2014-12-04 17:58:26
阅读次数:
247