htmlコード:
<tr id="myname">
<td><input class="count" type="text" value="1"></td>
</tr>
jqueryコード:
$('input.count').keyup(function(e){
var test = $(this).parent().parent().attr('id');
alert(test);
});
キーアップ入力時に、tr idを取得します!