<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 を取得できません。