我有那个HTML
<table>
<tbody>
<tr>
<td>
<input name="price" class="chrome-input" />
</td>
<td>
<button name="sellButton" class="chrome-button">
</button>
<button name="priceButton" class="chrome-button">
</button>
</td>
</tr>
</tbody>
</table>
如何让tr
包含内部类chrome-button
的控件。
像这样的东西
alert($("tr+.chrome-button").html());
答案 0 :(得分:4)
答案 1 :(得分:4)
$(".chrome-button").closest('tr')
答案 2 :(得分:1)
试试这个:
$("tr").children('td').each(function(){
$(this).children('.chrome-button').each(function(){
alert($(this).html());
});
});
答案 3 :(得分:1)
您可以将.parents()
方法与过滤器一起使用:http://api.jquery.com/parents/
alert($('.chrome-button').parents('tr').html())