複雑なhtmlファイルがあります。テーブルの行をクリックしたときに、テーブルの前にあるinput [type=text]を選択したい。
HTMLスニペットはここにあります
<input type=text/>
<table>
<tr>
...
</tr>
</table>
$('tr').click(function() {
$(this).closest('table').prev(input[type=text]).val();
});
これはスローします
`Uncaught TypeError: Object #<HTMLTableRowElement> has no method`closest
テーブルの行がクリックされたときに入力を選択するjQueryセレクターを作成するにはどうすればよいですか?