Get Anchor tag class/id from table jQuery
本问题已经有最佳答案,请猛点这里访问。
我有一张这样的桌子
我需要从表中获取锚标记值(类或id)。
换句话说,如何使用jQuery获取锚标记值
1 2 3 4 5 | <table class="kimztableclass" id="kimztableid"> <tr> Kimz Value </tr> </table> |
我需要这样的东西
1 2 3 4 5 6 7 | $(document).ready(function() { $('.mytableanchortagclass').editable({ .........do my coding stuff................. } } }); }); |
简而言之 - 我需要获取锚标记id / name以继续我的jQuery内容。
谢谢,
Kimz
使用
获得课程名称
1 | $(".kimztableclass a").attr("class"); |
获得Id
1 | $(".kimztableclass a").attr("id"); |
获取文字
1 | $(".kimztableclass a").text(); |
使用attr()方法
1 | $('.mytableanchortagclass tr').find('a').attr('id') |
这将返回类
1 | $('a.kimzanchorclass').attr('id'); |