반응형

<tr>
   
<td><input type="checkbox" name="IDX" class="IDX"></td>
    <td><input type="textbox" name="NUM" class="NUM"></td>
</tr>

        $(".IDX").change(function() {
            if (this.checked) {
                $(this).closest('tr').find("td").find(".NUM").focus();
            }
        });

closest로 현재 checkbox가 속한 tr을 먼저 찾고 td에서 class가 NUM인걸 찾아 focus주면 끝

반응형
Posted by Hippalus
,