📅  最后修改于: 2022-03-11 15:01:58.650000             🧑  作者: Mango
// Ctrl + S save
document.onkeyup = function(e) {
// 83 is the keycode for S
if (e.ctrlKey && e.which == 83) {
//Ctrl+S Pressed!
}
};