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

Email服务器

开发平台:

ASP/ASPX

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