Jquery获取按键
Jquery获取按键:
1
2
3
4
5
6 $(document).keydown(function(event) {
switch(event.keyCode)
{
/to do...
}
}
发表评论
| Trackback
Jquery获取按键:
1
2
3
4
5
6 $(document).keydown(function(event) {
switch(event.keyCode)
{
/to do...
}
}