其他分享
首页 > 其他分享> > 关于jquery中event.which与event.ctrlKey

关于jquery中event.which与event.ctrlKey

作者:互联网

在keydown事件中,event.which返回ASCII码

         event.ctrlKey返回boolean

$(document).keydown(function(event){

  var ctrl = event.ctrlKey;  //如果点击的为Ctrl键,ctrl为true

  switch(event.which){};       

})                                           //keydown一次只能传一个键

标签:jquery,返回,ctrl,keydown,ctrlKey,event
来源: https://www.cnblogs.com/zhihaochow/p/11222013.html