删除table表格行的实例讲解
网络 2017-10-12 1237
实例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | function getRowObj(obj) { while(obj.tagName.toLowerCase()!="tr") // toLowerCase转化小写 { obj=obj.parentNode; } // 得到父节点 return obj; } function sc(obj) // sc为点击事件 { var tr=this.getRowObj(obj); // 调用上面的方法 tr.parentNode.removeChild(tr); // 得到tr的父节点table,再移除它的子节点tr } |