jquery – 在表中获取td元素

前端之家收集整理的这篇文章主要介绍了jquery – 在表中获取td元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想点击表格中的锚标签(href)并提取下一个单元格(或该行中任何特定单元格)的内容

$(".clCode").click(function(){
    alert( $(this).text() );
    return false;
});

最佳答案
$(".clCode").click(function(){
    alert( $(this).parent().next().text() );
    return false;
});

那应该是下一个td.如果有更多的tds,你也可以将一个选择器传递给next(),你想得到的不是第一个.

$(".clCode").click(function(){
    alert( $(this).parent().next(':last').text() );
    return false;
});
原文链接:https://www.f2er.com/jquery/427847.html

猜你在找的jQuery相关文章