jQuery Handsontable の最初のフィールドにフォーカス onload を設定する適切な方法は何ですか?
リンクの例は次のとおりですhttp://jsfiddle.net/4kvMq/4/
$(function () {
$(window).load(function () {
$('#example10grid table tbody tr td:first-child').focus();
});
});
手動でフォーカスを設定しようとしてもうまくいきません!
$('#btnGo').click(function() {
$(".dataTable table tbody tr td:first-child").focus();
});
大変感謝します!