KeyDownEvent.js
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. /*
  2. File Version Start - Do not remove this if you are modifying the file
  3. Build: 9.5.0
  4. File Version End
  5. */
  6. /*
  7.     this function is used to verify whether the 'Enter' key is pressed.
  8.     if the 'Enter' key is pressed, then either call the event handler function passed in as a parameter (evntHdlrName)
  9.     or if evntHdlrName is an empty string, submit the form that contains the input box (that triggers this function).  
  10.     The form name is passed in as the third parameter, if it's an empty string, it's set to 0 by default.
  11.     The first parameter is an event object 
  12.     
  13.     written by Paul Chong, 17th May 01
  14. */
  15. function keydownfn(e, evntHdlrName, formName)
  16. {
  17.     var nav4;
  18.     var keyPressed;
  19.     //check if the brower is Netscape Navigator 4 or not
  20.     var nav4 = window.Event ? true : false;
  21. //if browser is Navigator 4, the key pressed is called <event object>.which else it's called <event object>.keyCode
  22. keyPressed = nav4 ? e.which : e.keyCode;
  23.     if (keyPressed == 13)
  24.     {
  25.         if (evntHdlrName != "")
  26. {
  27. // append empty parentheses if none given
  28. if(evntHdlrName.substr(evntHdlrName.length-1) != ")")
  29. evntHdlrName += "()";
  30. eval(evntHdlrName);
  31.         }
  32.         else
  33.         {
  34. if (formName == "")
  35. formName = 0;
  36.             document.forms[formName].submit();
  37.         }
  38.     }
  39.     return true;
  40. }