将焦点 onload 设置为 jQuery Handsontable 中的第一个字段的正确方法是什么?
这是示例链接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();
});
非常感谢!