我在表格中有多行,如http://jsfiddle.net/mm6gF/1/
我想在消息中显示前两个td
的内容。如何使用jQuery获取它?
答案 0 :(得分: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');
}
});