true--按了整數鍵, false--按了非整數鍵

hongyunxiang發表於2014-10-08
  /**
   * 對輸入域按鍵時的整數校驗
   * <p><b>Example: </b><p>
   * <p>checkInteger(window.event)<p>
   * @param Event 按鍵盤事件
   * @return 布林值(true--按了整數鍵, false--按了非整數鍵)
   */
function checkInteger(e)
{
  var charCode=e.keyCode;
  if(charCode>=48 && charCode<=57)
  {
    return true;
  }
  return false;
}

相關文章