收集JS双击shift键的方法,越多越好,例如:let ot = 0;document.onkeydown = (e) => { if (e.shiftKey) { let nt = new Date().getTime(); let ct = nt - ot; if (ct > 0 && ct < 600) { console.log(e.keyCode); } ot = nt; }};
2 回答
慕田峪4524236
TA贡献1875条经验 获得超5个赞
双击鼠标的是ondblclick,
连按两下键盘,有个想法是,监听keyup事件,每次按下记变量keynum, +1,keynum为2按二下,一定时间内没有再按第二下清空keynum
添加回答
举报
0/150
提交
取消