全国统一服务热线:400-633-9193

JSP实现客户信息管理系统

    网络     2018-01-18    1305

登录界面代码

index.jsp: 完全没技术含量的,直接调用一个servlet控制的是否登录

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 
 <title>客户信息管理系统登录</title>
 </head>
 
 <body>
 
   <h2>客户信息管理系统登录</h2>
   <form action="LoginServlet" method="post">
   用户名:<input type="text" name="name"/><br/>
   密 码:<input type="text" name="pwd"/><br/>
   <input type="submit" value="登录"/>
   </form>
 </body>
</html>

控制登录的 LoginServlet

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class LoginServlet extends HttpServlet {
 
 public void doGet(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
  doPost(request, response);
 }
 
 public void doPost(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
   String name = request.getParameter("name");
   String pwd = request.getParameter("pwd");
   //此时应该要把账号密码封装成JavaBean 访问后台数据库验证登录,这里简化了
   if(name!=null && name.startsWith("hncu") && pwd!=null &&pwd.length()>3){
    //登录成功,访问主页
    request.getSession().setAttribute("name", name);
    request.getRequestDispatcher("/jsps/table.jsp").forward(request, response);
   }else{//登录失败,重修返回登录界面
    response.sendRedirect(request.getContextPath()+"/index.jsp");
   }
 
 }
 
}

进来之后就到我们的主页后点击添加按钮,开头弹出一个窗口让我们输入添加的信息 

这个技术原理

1
2
3
4
5
6
7
8
function add(){
 var url = path+"/jsps/input.jsp";
 var returnValue =window.showModalDialog(url, "","dialogHeight:400px;dialogWidth:300pxl;status:no");
  if(returnValue){
//    alert(returnValue.id);
   realAdd(returnValue);
  }
}

url:是弹出小窗口的路径。后面是设置弹出窗口的参数。 
返回值可以拖过这个语句提供

1
window.returnValue=obj;

下面是这个添加过程的示意图 

主页代码以及JS代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 <link rel="stylesheet" type="text/css" href="<c:url value='/css/table.css'/>" rel="external nofollow" >
 <title>客户信息管理系统</title>
 <script type="text/javascript" src='<c:url value="/js/table.js"/>'></script>
  <script type="text/javascript">
  var path = "<c:url value='/'/>";
  </script>
 </head>
 
 <body>
   <h2>客户信息管理系统</h2>
   <input type="button" onclick="del();" value="删除"/>
   <input type="button" value="添加" onclick="add()" >
 
   <table id="tb">
   <tr>
    <th>选择<input type="checkbox" id="parentChk" onclick="chk(this);"></th>
   <th>姓名</th><th>年龄</th><th>地址</th><th class="iid">ID</th>
   </tr>
   </table>
 
 <form name="f1" target="ifrm" action="<c:url value='/DelServlet'/>" method="post">
  <input id="ids" type="hidden" name="ids"/>
  </form>
  <iframe name="ifrm" style="display:none;"></iframe>
 </body>
</html>

table.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
function add(){
  var url = path+"/jsps/input.jsp";
  //var vReturnValue = window.showModalDialog(url,"","dialogWidth:400px;dialogHeight:200px;status:no;");
  var returnValue =window.showModalDialog(url, "","dialogHeight:400px;dialogWidth:300pxl;status:no");
  if(returnValue){
//    alert(returnValue.id);
   realAdd(returnValue);
  }
}
// 把封装过来的数据实际插入到表格
 function realAdd(obj){
  var tb = document.getElementById("tb");
  var oTr = tb.insertRow();
  var oCell = oTr.insertCell();
  oCell.innerHTML='<input type="checkbox" name="chk" onclick="subchk(this);"/>';
  oCell = oTr.insertCell();
  oCell.innerHTML=obj.name;
 
  oCell = oTr.insertCell();
  oCell.innerHTML=obj.age;
 
  oCell = oTr.insertCell();
  oCell.innerHTML=obj.addr;
 
  oCell = oTr.insertCell();
  oCell.innerHTML=obj.id;
  oCell.className="iid";
}
 
//全先复选框,点击上面的全选框。下面的所有复选框都要全选
function chk(obj){
 var chks = document.getElementsByName("chk");
 var len = chks.length;
 for(var i=0; i<len; i++){
  chks[i].checked = obj.checked;
 }
}
//通过统计下面的复选框的选择情况,决定上面的复习框的三种状态
function subchk(obj){
 var chks = document.getElementsByName("chk");
 var n=0; //统计表格行中被勾选中的行数
 for(var i=0;i<chks.length;i++){
  if(chks[i].checked){
   n++;
  }
 }
 
 var parentChk = document.getElementById("parentChk");
 if(n==0){
  parentChk.indeterminate=false;//※※※不能省
  parentChk.checked=false;
 }else if(n==chks.length){
  parentChk.indeterminate=false;//※※※不能省
  parentChk.checked=true;
 }else{
  parentChk.indeterminate=true;
 }
 
}
 
//把用户选中行的id提交给后台,后台删除成功后返回true
function del(){
 //以后我们应该用json去封装所有的id,提交给后台处理(暂时我们还没学)。
 //现在我们暂时用字符拼接的方式来做,有潜在bug的
 var tb = document.getElementById("tb");
 var chks = document.getElementsByName("chk");
 
 var ids="";
 for(var i=0;i<chks.length;i++){
  if(chks[i].checked){
   //alert("aaa");
   //把该行的id值获取出来
   var oTr = chks[i].parentNode.parentNode;
   //alert(oTr);
   var id = oTr.cells[4].innerText;
   //alert(id);
 
   if(ids==""){
    ids=id;
   }else{
    ids = ids +"," +id;
   }
  }
 }
 
 if(ids==""){
  alert("请选择要删除的行");
 }else{
  document.getElementById("ids").value=ids;
  document.forms['f1'].submit();
 }
}
 
function realDel(boo){
 if(!boo){
  alert("删除失败!");
  return;
 }
 
 var tb = document.getElementById("tb");
 var chks = document.getElementsByName("chk");
 var len = chks.length;
 //倒着删
 for(var i=len-1;i>=0;i--){
  if(chks[i].checked){
   tb.deleteRow(i+1);
  }
 }
 
 var chks = document.getElementsByName("chk");
 var n=0; //统计表格行中被勾选中的行数
 for(var i=0;i<chks.length;i++){
  if(chks[i].checked){
   n++;
  }
 }
 // 删除之后更细上面复选框的状态
 var parentChk = document.getElementById("parentChk");
 if(n==0){
  parentChk.indeterminate=false;//※※※不能省
  parentChk.checked=false;
 }else if(n==chks.length){
  parentChk.indeterminate=false;//※※※不能省
  parentChk.checked=true;
 }else{
  parentChk.indeterminate=true;
 }
 
 
}

input.jsp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <body>
  <h3>客户信息添加</h3>
  <form target="ifrm" name="ss" action="<c:url value='/SaveServlet' />" method="post">
   姓名:<input type="text" name="name"/><br/>
    年龄: <input type="text" name="age"/><br/>
    地址:<input type="text" name="addr"/><br/><br/>
   <input type="button" value="添加" onclick="save();"/>   
   <input type="button" value="取消" onclick="window.close();"/><br/>
  </form>
 
  <iframe name="ifrm" style="display:none;"></iframe>
 
 <script type="text/javascript">
  function save(){
   document.forms['ss'].submit();
  }
 
  //该方法由后台返回的saveback.jsp(在iframe中,子页)反调这里(父页)
  function realSave(obj){
   //window.returnValue="aa";
   //window.close();
   window.returnValue=obj;
   window.close();
  }
 </script>
 </body>
</html>

save.jsp

1
2
3
4
5
6
7
8
9
10
<%@ page language="java" import="java.util.*;" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<script type="text/javascript">
 var user = new Object();
 user.name = '<c:out value="${user.name}"/>';
 user.id = '<c:out value="${user.id}"/>';
 user.age = '<c:out value="${user.age}"/>';
 user.addr = '<c:out value="${user.addr}"/>';
 parent.realSave(user);
</script>

在后面是删除的过程 

delback.jsp

1
2
3
4
5
6
7
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<script type="text/javascript">
 //用jstl在js页面中把从后台获取出来
 var boo = "<c:out value='${succ}' />";
 parent.realDel(boo);
</script>


  分享到:  
0.2572s