当我单击链接“zmeniť pozíciu”时,我想将其最接近的 img 保存到变量。
<table border="1">
<tbody>
<tr>
<th rowspan="3">1</th>
<th>Nadpis</th>
<td colspan="9">Eiusmod tempor</td>
<td> <a href="#">zmeniť</a> </td>
<td rowspan="3"> <a class="zmenit-poziciu" href="#">zmeniť pozíciu</a> </td>
</tr>
<tr>
<th>Text</th>
<td colspan="9">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam ...
</td>
<td> <a href="#">zmeniť</a> </td>
</tr>
<tr class="obrazok">
<th>Obrázok</th>
<td colspan="9"> <img alt="img" src="http://lorempixel.com/500/120/sports/1"> </td>
<td ><a href="#">zmeniť</a></td>
</tr>
</tbody>
</table>
我试过了,但它不起作用
$(".zmenit-poziciu").click(function() {
var img = $(this).parent().closest("obrazok").html();
alert(img);
return false
});