全国爆破作业人员培训考核信息系统
.text_right .code_tu222{ float: left; width: 63px; height: 25px; background: #FFFFFF; margin-left: 5px; margin-top: 15px;}
.text_yellow {color:#FFBF00; font-size:13px;} function keyUp(){ //alert(event.keyCode); if(event.keyCode==13) { document.getElementById(“login”).click(); //checkForm(); }
function loadExamPage(){ window.location.href=“/exam”}
function checkForm() { var userNameObj=document.form1.yourname; var userPassObj=document.form1.yourpass; var VerifyCodeObj=document.form1.verifycode; var examInfoObj=document.form1.examineinfo; var examTypeObj=document.form1.examtype; var submitTimeObj=document.form1.submittime; var resultObj=document.form1.result; var examIdObj=document.form1.examid; var userName=userNameObj.value; var userPass=userPassObj.value; var verifyCode=VerifyCodeObj.value; var examInfo=“”; var examType=“”; if(!userName){ alert(“姓名不能为空”); return; } if(!userPass){ alert(“密码不能为空”); return; } if(userPass !== verifyCode){ alert(“验证码错误”); return; } if (examType === “01”){ examInfo = “请选择课程类型:”; examInfo += “1. 初级爆破技术;”; examInfo += “2. 中级爆破技术;”; examInfo += “3. 高级爆破技术。”; examInfo += “请选择您的课程类型:” + examInfo; } if (examIdObj !== “” && examIdObj !== undefined){ // 检查考试信息是否已填写 } else { alert(“考试信息不能为空”); return; } // 跳转到考场页面 }