<table class="table1">
<tbody>
<tr class="tablerow1">
<td valign="top">
<strong>
<a href="http://www.wineweb.com/scripts/wineryPg.cfm/11094/Aan-de-Doorns-Co%2Dop/" target="_top">Aan de Doorns Co-op </a> </strong> </td></tr>
</tbody>
</table>
这是一个示例 html,在实际 html 中有多个包含多个单元格的行,这就是我正在做的事情
$('table.table1').each(function(k, elem) {
$(this).find('tr').each(function(j, elem){
$(this).find('td').each(function(i,elem){
console.log($(this).find('strong a').attr('href'));
})
})
});
但我无法通过这种方法获得href。