今天在做项目时,碰到一个问题,那就是移除掉某些tr(tr是动态添加的)。尝试了很多方法,都不见效(比如,deleteRow方法,貌似传的参数只能是tr的行数。没有仔细研究目前)。后来,发现这个方法效果不错,特此记录。
1 2 |
$(temp).parent().remove(); //temp为td的id |
html代码:
1 2 3 4 5 6 7 8 9 10 |
<table> |
js代码:
1 2 3 4 |
function removeTr(temp){ |