确认是否是键盘有效输入值

  1. function checkKey(iKey) {
  2. if (iKey == 32 || iKey == 229) {
  3. return true;
  4. } /*空格和异常*/
  5. if (iKey > 47 && iKey < 58) {
  6. return true;
  7. } /*数字*/
  8. if (iKey > 64 && iKey < 91) {
  9. return true;
  10. } /*字母*/
  11. if (iKey > 95 && iKey < 108) {
  12. return true;
  13. } /*数字键盘1*/
  14. if (iKey > 108 && iKey < 112) {
  15. return true;
  16. } /*数字键盘2*/
  17. if (iKey > 185 && iKey < 193) {
  18. return true;
  19. } /*符号1*/
  20. if (iKey > 218 && iKey < 223) {
  21. return true;
  22. } /*符号2*/
  23. return false;
  24. }