﻿// JScript 文件
function HyloginHtml()
{
     var strname = document.getElementById("txtUsername").value;
     var strpassword = document.getElementById("txtPassword").value;
     var stryzm = document.getElementById("txtValidate").value;
     
     if( strname== "")
        {
            alert("登陆用户名未输入");
            document.getElementById("txtUsername").focus();
            return false;
        }
    
    if(strpassword == "")
       {
            alert("登陆密码未输入");
            document.getElementById("txtPassword").focus();
            return false;
       }
    if(stryzm == "")
       {
            alert("验证码未输入");
            document.getElementById("txtValidate").focus();
            return false;
       }
         
}


