java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

"基于JSP的学生成绩管理系统

系统没用任何框架,前台纯JSP实现,后台servlet映射,适合刚学习J2EE的新手,代码思路清晰,注解详细,数据库用的是mysql5.1,服务器用的tomcat7,JDK版本1.7. 编程软件Eclispe J2EE版本。是典型MVC架构,并且前后台分离,
具体功能这里不再赘述,请下方看系统详细演示图,如果大家有什么疑问或者什么不懂得可以在下方给我留言,也可以私信我和我一起交流沟通,互相学习进步代码已经上传github,下载地址 https://github.com/21503882/
好了下面让我来给大家展示一下这个项目的页面效果:"

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

java servlet +jsp+mysql Ajax +easyui+jQuery整合开发学生成绩管理系统

 

 

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="bookmark" href="favicon.ico"/>
<link href="h-ui/css/H-ui.min.css" rel="stylesheet" type="text/css" />
<link href="h-ui/css/H-ui.login.css" rel="stylesheet" type="text/css" />
<link href="h-ui/lib/icheck/icheck.css" rel="stylesheet" type="text/css" />
<link href="h-ui/lib/Hui-iconfont/1.0.1/iconfont.css" rel="stylesheet" type="text/css" />
 
<link rel="stylesheet" type="text/css" href="easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="easyui/themes/icon.css">
 
<script type="text/javascript" src="easyui/jquery.min.js"></script> 
<script type="text/javascript" src="h-ui/js/H-ui.js"></script> 
<script type="text/javascript" src="h-ui/lib/icheck/jquery.icheck.min.js"></script> 
 
<script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>
 
<script type="text/javascript">
    $(function(){
        //点击图片切换验证码
        $("#vcodeImg").click(function(){
            this.src="LoginServlet?method=GetVcode&t="+new Date().getTime();
        });
        
        //登录
        $("#submitBtn").click(function(){
            if($("#radio-2").attr("checked") && "${systemInfo.forbidStudent}" == 1){
                $.messager.alert("消息提醒", "学生暂不能登录系统!", "warning");
                return;
            }
            if($("#radio-3").attr("checked") && "${systemInfo.forbidTeacher}" == 1){
                $.messager.alert("消息提醒", "教师暂不能登录系统!", "warning");
                return;
            }
            
            var data = $("#form").serialize();
            $.ajax({
                type: "post",
                url: "LoginServlet?method=Login",
                data: data, 
                dataType: "text", //返回数据类型
                success: function(msg){
                    if("vcodeError" == msg){
                        $.messager.alert("消息提醒", "验证码错误!", "warning");
                        $("#vcodeImg").click();//切换验证码
                        $("input[name='vcode']").val("");//清空验证码输入框
                    } else if("loginError" == msg){
                        $.messager.alert("消息提醒", "用户名或密码错误!", "warning");
                        $("#vcodeImg").click();//切换验证码
                        $("input[name='vcode']").val("");//清空验证码输入框
                    } else if("admin" == msg){
                        window.location.href = "SystemServlet?method=toAdminView";
                    } else if("student" == msg){
                        window.location.href = "SystemServlet?method=toStudentView";
                    } else if("teacher" == msg){
                        window.location.href = "SystemServlet?method=toTeacherView";
                    }
                }
                
            });
        });
        
        //设置复选框
        $(".skin-minimal input").iCheck({
            radioClass: 'iradio-blue',
            increaseArea: '25%'
        });
    })
</script> 
<title>登录|学生成绩管理系统</title>
<meta name="keywords" content="学生成绩管理系统">
</head>
<body>
 
<div class="header" style="padding: 0;">
    <h2 style="color: white; width: 400px; height: 60px; line-height: 60px; margin: 0 0 0 30px; padding: 0;">学生成绩管理系统</h2>
</div>
<div class="loginWraper">
  <div id="loginform" class="loginBox">
    <form id="form" class="form form-horizontal" method="post">
      <div class="row cl">
        <label class="form-label col-3"><i class="Hui-iconfont">&#xe60d;</i></label>
        <div class="formControls col-8">
          <input id="" name="account" type="text" placeholder="账户" class="input-text size-L">
        </div>
      </div>
      <div class="row cl">
        <label class="form-label col-3"><i class="Hui-iconfont">&#xe60e;</i></label>
        <div class="formControls col-8">
          <input id="" name="password" type="password" placeholder="密码" class="input-text size-L">
        </div>
      </div>
      <div class="row cl">
        <div class="formControls col-8 col-offset-3">
          <input class="input-text size-L" name="vcode" type="text" placeholder="请输入验证码" style="width: 200px;">
          <img title="点击图片切换验证码" id="vcodeImg" src="LoginServlet?method=GetVCode"></div>
      </div>
      
      <div class="mt-20 skin-minimal" style="text-align: center;">
        <div class="radio-box">
            <input type="radio" id="radio-2" name="type" checked value="2" />
            <label for="radio-1">学生</label>
        </div>
        <div class="radio-box">
            <input type="radio" id="radio-3" name="type" value="3" />
            <label for="radio-2">老师</label>
        </div>
        <div class="radio-box">
            <input type="radio" id="radio-1" name="type" value="1" />
            <label for="radio-3">管理员</label>
        </div>
    </div>
      
      <div class="row">
        <div class="formControls col-8 col-offset-3">
          <input id="submitBtn" type="button" class="btn btn-success radius size-L" value="&nbsp;登&nbsp;&nbsp;&nbsp;&nbsp;录&nbsp;">
        </div>
      </div>
    </form>
  </div>
</div>
<div class="footer">Copyright &nbsp; SWU @ Lizhou </div>
 
 
</body>
</html>