verify_Client_old.js
上传用户:lwb168
上传日期:2021-10-31
资源大小:722k
文件大小:1k
源码类别:

Email服务器

开发平台:

ASP/ASPX

  1. <!--
  2. function UserEnter()
  3. {
  4.   if(window.document.fm.operator_name.value.length<1){
  5.    alert("请您填写用户名!");
  6. document.fm.operator_name.focus();
  7.    return;}
  8.   if(window.document.fm.operator_pwd.value.length<1){
  9.    alert("请您填写密码!");
  10. document.fm.operator_pwd.focus();
  11.    return;}
  12.     if (document.fm.operator_name.value.indexOf("<")!=-1 || document.fm.operator_name.value.indexOf(">")!=-1){
  13. alert("用户名中不能包含 (<,>) ");
  14. document.fm.operator_name.focus();
  15. return ;
  16. }
  17. if (document.fm.operator_name.value.indexOf("'")!=-1){
  18. alert("用户名中不能包含 (') ");
  19. document.fm.operator_name.focus();
  20. return ;
  21. }
  22.   window.document.fm.submit();
  23. return true;
  24. }
  25. function window_onload()
  26. {
  27.      window.document.fm.screenwidth.value=window.screen.width;
  28.     window.document.fm.operator_name.focus();
  29. }
  30. function name_next(code)
  31. {
  32.   var charcode=(navigator.appName=="Netscape")?code.which:code.keyCode;
  33.   if(charcode==13)
  34.     {
  35.       window.document.fm.operator_pwd.focus();
  36.     }
  37. }
  38. function pwd_next(code)
  39. {
  40.   var charcode=(navigator.appName=="Netscape")?code.which:code.keyCode;
  41.   if(charcode==13)
  42.     {
  43.       UserEnter();
  44.     }
  45. }