这是我的数据表:
的数据
如果我按下向下箭头,滚动条不会跟随表格的焦点,所以我必须手动移动滚动条才能看到它。
的
$(document).keydown(function(e) {
if (e.keyCode == 40) { //arrow down
if (tr.next().length) {
table.$('tr.selected').removeClass('selected');
tr.next().addClass('selected');
tr = table.$('tr.selected');
}
}
if (e.keyCode == 38) { // arrow up
if (tr.prev().length) {
table.$('tr.selected').removeClass('selected');
tr.prev().addClass('selected');
tr = table.$('tr.selected');
}
}
})
字符串
1条答案
按热度按时间e7arh2l61#
您可以在代码中添加滚动逻辑来实现此目的。
希望能对你有所帮助。