📅  最后修改于: 2022-03-11 15:00:23.280000             🧑  作者: Mango
There's no "keycode", it's a separate property on the event object, like this:
if(event.shiftKey && event.keyCode == 9) {
//shift was down when tab was pressed
}