$(this).closest('tr').next() td:eq(7).focus();
このエラーは何ですか?私はjQueryを初めて使用しています。 tr
,td
、table
インデックスを使ってどのようにフォーカスすることができますか?フォーカスJqueryを使用する<tr>
$('.gridfield').keypress(function(e) {
console.log(this);
if (e.which == 13) {
var row_index = $(this).parent().index();
$(this).closest('tr').next() td:eq(row_index).focus();
e.preventDefault();
}
});
.closest '$(この)( 'TR')次の()を見つけます( 'td')。eq(row_index).focus(); ' –
これは他の解決策ですか? – Bipin
何をしようとしていますか?あなたが必要とするものをhtmlサンプルで共有する –