I have some table rows
6条回答 慢半拍i (楼主) 2021-02-12 14:04 Use $(this) for get the desire element. function openAll() { $("tr.b_row").each(function(){ var a_href = $(this).find('.cpt h2 a').attr('href'); alert ("Href is: "+a_href); }); } 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Use $(this) for get the desire element.
$(this)
function openAll() { $("tr.b_row").each(function(){ var a_href = $(this).find('.cpt h2 a').attr('href'); alert ("Href is: "+a_href); }); }