1

我在这样的表中有多行http://jsfiddle.net/mm6gF/1/
我想td在消息中显示 2 以前的内容。如何使用 jQuery 获取它?

4

1 回答 1

1
$('.delete').click(function() {
    var name = $(this).closest('tr').find('td').first().text();
    var pw = $(this).closest('td').prev().text();
    answer = confirm ('Are you sure to remove this item?\n' + name + ' : ' + pw);
    if (answer)
    {
        alert('Removed');
    }
})​;

http://jsfiddle.net/mm6gF/2/

于 2012-07-31T20:18:30.703 回答