diff --git a/web/WEB-INF/lib/jstl.jar b/web/WEB-INF/lib/jstl.jar new file mode 100644 index 0000000..a02abec Binary files /dev/null and b/web/WEB-INF/lib/jstl.jar differ diff --git a/web/WEB-INF/lib/standard.jar b/web/WEB-INF/lib/standard.jar new file mode 100644 index 0000000..bc528ac Binary files /dev/null and b/web/WEB-INF/lib/standard.jar differ diff --git a/web/cssFile/home.css b/web/cssFile/home.css index 8c85dd2..27b56c4 100644 --- a/web/cssFile/home.css +++ b/web/cssFile/home.css @@ -1,12 +1,13 @@ body{ margin: 0px; padding: 0px; - background-color: #dad0ce; + background-color:#f5f5f5; width: 100%; height: 100%; } + .main2{ - background-color: #f8f9ff; + background-color: rgb(249, 248, 255); } a{ text-decoration: none; @@ -172,7 +173,6 @@ width: 35px; position: relative; width: 1100px; margin: 0px auto; - background-color: white; } .link-point{ display: block; @@ -193,8 +193,11 @@ width: 35px; } .nav-info{ color: white; + text-overflow: ellipsis; text-align: center; + width: 100%; font-size: 12px; + height: 16px; } .update-frame{ border-top: 1px solid rgba(255,105,0,0); @@ -212,7 +215,7 @@ width: 35px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.33); - box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.22); + box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.22); } .scroll-ads .scroll-ads-imgs .scroll-child{ display: inline-block; @@ -243,6 +246,7 @@ width: 35px; color: white; } .notice-frame{ + background-color: white; margin:370px auto 0px 45px; position: relative; width: 800px; @@ -250,7 +254,7 @@ width: 35px; border:1px solid rgba(0, 0, 0, 0.32); border-radius: 5px; overflow: hidden; - box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.29); + box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.29); } .notice-frame .notice-frame-info{ @@ -279,7 +283,7 @@ width: 35px; .bar-change::-webkit-scrollbar-thumb{ width: 10px; transition: all 0.3s; - background-color: #e45053; + background-color: rgba(210, 81, 80, 0.96); border-radius: 10px; } .notice-child{ diff --git a/web/cssFile/select-style.css b/web/cssFile/select-style.css index 468972a..1ff8235 100644 --- a/web/cssFile/select-style.css +++ b/web/cssFile/select-style.css @@ -14,7 +14,7 @@ a{ width: 350px; height: 50px; top:40px; - right: 60px; + right: 90px; background-color: rgba(0, 0, 0, 0.14); border-radius: 5px; } @@ -45,6 +45,7 @@ a{ background: rgb(255, 255, 255); } .list-frame .list-child{ + margin: 10px 5px; height: 120px; width: 98%; @@ -57,12 +58,15 @@ a{ background: rgba(0, 0, 0, 0.06); } .list-frame{ + background-color: white; + border: 1px solid rgba(0, 0, 0, 0.28); + border-radius: 10px; overflow-y: scroll; - right: 60px; + right: 90px; top: 100px; position: absolute; max-height: 700px; - width: 600px; + width: 700px; } .select-it{ box-shadow:0px 2px 4px rgba(0, 0, 0, 0.22); @@ -100,9 +104,9 @@ a{ .count-select{ cursor: pointer; position: absolute; - width: 200px; + width: 150px; top: 100px; - left: 100px; + left: 20px; transition: all 0.3s; } .count-select:hover{ @@ -141,18 +145,18 @@ a{ box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.27); } .other-msgs{ - font-size: 10px; + font-size: 11px; float: left; - width: 350px; - height: 100px; - margin: 10px 0 10px 15px; + width: 380px; + height: 90px; + margin: 15px 0 15px 30px; } .other-msgs .one-msg{ float:left; padding-left: 10px; - margin: 2px 2px; + margin: 5px 2px; width: 45%; - height:16px; + height:20px; background-color: rgba(0, 0, 0, 0.78); border-radius: 10px; transition: all 0.3s; diff --git a/web/home.jsp b/web/home.jsp index 41530f5..519c9f4 100644 --- a/web/home.jsp +++ b/web/home.jsp @@ -12,11 +12,13 @@ + +
@@ -47,24 +49,32 @@
-
+
-
+
-
+
- +
diff --git a/web/jsFile/search.js b/web/jsFile/search.js index 44a9243..5801730 100644 --- a/web/jsFile/search.js +++ b/web/jsFile/search.js @@ -23,13 +23,15 @@ function KDsearchmsg(e) { } } function select_one() { - var id=$('.select-it').val(); + var id=$(this).val(); + var button=$(this); var selectDate={"id":id}; - var Url2='select'; - $.post(Url2,selectDate,function (data ,status) { - if(status==200) + var Url2='testfrom.jsp'; + $.post(Url2,selectDate,function (data,status) { + if(status=='success') { - alert('操作成功'); + button.css('background-color','rgba(88, 137, 238, 0.97)') + .html("已选") } - }) + }); } \ No newline at end of file diff --git a/web/result_list.jsp b/web/result_list.jsp index 2f349fa..f2f4e13 100644 --- a/web/result_list.jsp +++ b/web/result_list.jsp @@ -17,8 +17,8 @@ for(int i=0;i<3;i++)
<%=a%>
- <%for(int k=0;k电话号码:"+b[k][n]+"
"); %>
电话号码:18711191679
diff --git a/web/select.jsp b/web/select.jsp index d214f7b..a093faf 100644 --- a/web/select.jsp +++ b/web/select.jsp @@ -35,8 +35,6 @@
专业:软件工程
电话号码:18711191679
邮箱:823169880@qq.com
-
年级:2016
-
专业:软件工程