1
4

2 回答 2

2
于 2012-09-19T07:12:54.640 回答
0

在你的桌子上添加一个“my_table”id并使用它:

$(function(){
    $("#my_table").on('click','.close',function(event){
        event.preventDefault();
        $(this).closest('tr').remove();
    });
});
于 2012-09-19T07:20:48.227 回答