verify_Client_old.js
资源名称:imail.rar [点击查看]
上传用户:lwb168
上传日期:2021-10-31
资源大小:722k
文件大小:1k
源码类别:
Email服务器
开发平台:
ASP/ASPX
- <!--
- function UserEnter()
- {
- if(window.document.fm.operator_name.value.length<1){
- alert("请您填写用户名!");
- document.fm.operator_name.focus();
- return;}
- if(window.document.fm.operator_pwd.value.length<1){
- alert("请您填写密码!");
- document.fm.operator_pwd.focus();
- return;}
- if (document.fm.operator_name.value.indexOf("<")!=-1 || document.fm.operator_name.value.indexOf(">")!=-1){
- alert("用户名中不能包含 (<,>) ");
- document.fm.operator_name.focus();
- return ;
- }
- if (document.fm.operator_name.value.indexOf("'")!=-1){
- alert("用户名中不能包含 (') ");
- document.fm.operator_name.focus();
- return ;
- }
- window.document.fm.submit();
- return true;
- }
- function window_onload()
- {
- window.document.fm.screenwidth.value=window.screen.width;
- window.document.fm.operator_name.focus();
- }
- function name_next(code)
- {
- var charcode=(navigator.appName=="Netscape")?code.which:code.keyCode;
- if(charcode==13)
- {
- window.document.fm.operator_pwd.focus();
- }
- }
- function pwd_next(code)
- {
- var charcode=(navigator.appName=="Netscape")?code.which:code.keyCode;
- if(charcode==13)
- {
- UserEnter();
- }
- }