- window.isCtrlKey = function (keyCode) {
- // 8 - 退格
- // 9 - Tab
- // 13 - 回车
- // 16~18 - Shift, Ctrl, Alt
- // 37~40 - 左上右下
- // 35~36 - End Home
- // 46 - Del
- // 112~123 - F1-F12
- switch (keyCode) {
- case 8: case 9: case 13:
- case 16: case 17: case 18:
- case 37: case 38: case 39: case 40:
- case 35: case 36: case 46:
- return true;
- default:
- if (keyCode >= 112 && keyCode <= 123) {
- return true;
- }
- return false;
- }
- }
本文转自边城__ 51CTO博客,原文链接:http://blog.51cto.com/jamesfancy/667878,如需转载请自行联系原作者