今天在做项目时,碰到一个问题,那就是移除掉某些tr(tr是动态添加的)。尝试了很多方法,都不见效(比如,deleteRow方法,貌似传的参数只能是tr的行数。没有仔细研究目前)。后来,发现这个方法效果不错,特此记录。
1
2
|
$(temp).parent().remove(); //temp为td的id code class= "js plain" > 我的理解是这样的:$(temp)先获取到该td对象,然后.parent()获取到td的tr,再remove()方法,删除tr。</code> |
html代码:
1
2
3
4
5
6
7
8
9
10
|
< table > < tr > < td >< a href = '#' onclick = 'removeTr(this)' >123</ a ></ td > < td >< a href = '#' onclick = 'removeTr(this)' >456</ a ></ td > </ tr > < tr > < td >< a href = '#' onclick = 'removeTr(this)' >aaa</ a ></ td > < td >< a href = '#' onclick = 'removeTr(this)' >bbb</ a ></ td > </ tr > ;/table> |
js代码:
1
2
3
4
|
function removeTr(temp){ mp).parent().parent().remove(); //必须保证页面已经引入了jQuery才可以使用 //此处$(temp)先获取到<a>对象,.parent()拿到<td>,再.parent()获取到tr } |