摘要:基于的高校科研項(xiàng)目管理系統(tǒng)部分代碼實(shí)現(xiàn)科研方向備注
基于javaweb+jsp的高校科研項(xiàng)目管理系統(tǒng)
JavaWeb JavaBean JSP MVC MySQL Tomcat JavaScript idea eclipse MyEclipse Servlet SSM Maven …
部分代碼實(shí)現(xiàn)JSP
<label class="col-sm-3 control-label">科研方向:label> <div class="col-sm-5" style="padding-top: 7px;"> ${vo.ryTeam} div> div> <div class="form-group"> <label class="col-sm-3 control-label">備注:label> <div class="col-sm-5" style="padding-top: 7px;"> <textarea rows="3" class="form-control" id="ryText" name="ryText" disabled="disabled">${vo.ryText}textarea> div> div> <div class="form-group"> <label class="col-sm-3 control-label">label> <div class="col-sm-5" style="padding-top: 7px;"> <input type="button" class="btn btn-rect btn-grad btn-info btn-sm" value="返回" onclick="javascript:history.back(-1);"> div> div> form>
<div class="col-sm-5"> <input name="rySex" type="radio" value="男" checked="checked"/> 男 <input name="rySex" type="radio" value="女"/> 女 div> div> <div class="form-group"> <label class="col-sm-3 control-label">聯(lián)系方式:label> <div class="col-sm-5"> <input type="text" class="form-control" id="ryPhone" name="ryPhone"> div> div> <div class="form-group"> <label class="col-sm-3 control-label">科研方向:label> <div class="col-sm-5"> <input type="text" class="form-control" id="ryTeam" name="ryTeam"> div> div> <div class="form-group">
body>html><%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>科研人員管理title> <%@ include file="include/head.jsp" %>head><body><div class="container-fluid"> <ul class="nav nav-tabs"> <li class="active"><a href="RenyuanServlet?action=list">科研人員列表a>li> <c:if test="${loginUser.userType == "管理員"}"><li><a href="renyuan_add.jsp">添加a>li>c:if> ul> <br/> <form class="form-inline" id="searchForm" action="RenyuanServlet?action=list" method="post"> <div class="form-group"> <input type="text" class="form-control" name="keyword" id="keyword" placeholder="姓名"> <input type="hidden" id="searchColumn" name="searchColumn" value="ry_name"/>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>科研人員添加title> <%@ include file="include/head.jsp" %>head><body><div class="container-fluid"> <ul class="nav nav-tabs"> <li><a href="RenyuanServlet?action=list">科研人員列表a>li> <li class="active"><a href="#">添加a>li> ul> <br/> <form class="form-horizontal" role="form" action="RenyuanServlet?action=add" method="post" onsubmit="return check()">
return false; } if (document.getElementById("ryTeam").value.trim().length == 0) { alert("科研方向不能為空!"); return false; } return true; }script>html><%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<span class="glyphicon glyphicon-remove" aria-hidden="true">span> 刪除 button> td> tr> c:forEach> tbody> table> <div style="float: right;padding-right: 10px;color: #515151;"><jsp:include page="split.jsp"/>div>div>body>
//根據(jù)ID獲取值 if (document.getElementById("ryNo").value.trim().length == 0) { alert("人員編號(hào)不能為空!"); return false; } if (document.getElementById("ryName").value.trim().length == 0) { alert("姓名不能為空!"); return false; } if (document.getElementById("ryAge").value.trim().length == 0) { alert("年齡不能為空!"); return false; } if (document.getElementById("ryPhone").value.trim().length == 0) { alert("聯(lián)系方式不能為空!");
<div class="form-group"> <label class="col-sm-3 control-label">人員編號(hào):label> <div class="col-sm-5"> <input type="text" class="form-control" id="ryNo" name="ryNo" value="${vo.ryNo}"> div> div> <div class="form-group"> <label class="col-sm-3 control-label">姓名:label> <div class="col-sm-5"> <input type="text" class="form-control" id="ryName" name="ryName" value="${vo.ryName}"> div> div> <div class="form-group"> <label class="col-sm-3 control-label">年齡:label> <div class="col-sm-5"> <input type="text" class="form-control" id="ryAge" name="ryAge" value="${vo.ryAge}"> div> div>
body><script type="text/javascript"> //提交之前進(jìn)行檢查,如果return false,則不允許提交 function check() { //根據(jù)ID獲取值 if (document.getElementById("ryNo").value.trim().length == 0) { alert("人員編號(hào)不能為空!"); return false; } if (document.getElementById("ryName").value.trim().length == 0) { alert("姓名不能為空!"); return false; } if (document.getElementById("ryAge").value.trim().length == 0) { alert("年齡不能為空!"); return false; } if (document.getElementById("ryPhone").value.trim().length == 0) {
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>科研人員編輯title> <%@ include file="include/head.jsp" %>head><body><div class="container-fluid"> <ul class="nav nav-tabs"> <li><a href="RenyuanServlet?action=list">科研人員列表a>li> <li class="active"><a href="#">編輯a>li> ul> <br/> <form class="form-horizontal" role="form" action="RenyuanServlet?action=edit" method="post" onsubmit="return check()">
<div class="form-group"> <label class="col-sm-3 control-label">年齡:label> <div class="col-sm-5" style="padding-top: 7px;"> ${vo.ryAge} div> div> <div class="form-group"> <label class="col-sm-3 control-label">性別:label> <div class="col-sm-5" style="padding-top: 7px;"> ${vo.rySex} div> div> <div class="form-group"> <label class="col-sm-3 control-label">聯(lián)系方式:label> <div class="col-sm-5" style="padding-top: 7px;"> ${vo.ryPhone} div> div>
<label class="col-sm-3 control-label">性別:label> <div class="col-sm-5"> 男
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/125018.html
摘要:年月最新發(fā)布本人原創(chuàng)作品,用戶前臺(tái)系統(tǒng)管理員后臺(tái)項(xiàng)目完整,無任何。 2021年10月最新發(fā)布 本人原創(chuàng)作品,用戶前臺(tái)、系統(tǒng)管理員后臺(tái)項(xiàng)目完整,無任何bug。 每行代碼都是本人自己寫,我在每行代碼上面都寫有注釋,不懂任何問題都可以咨詢 開發(fā)工具:IDEA? 服務(wù)器:Tomcat8.0??jdk...
摘要:基于的機(jī)房設(shè)備管理系統(tǒng)部分代碼實(shí)現(xiàn)機(jī)房號(hào)容納人數(shù)介紹狀態(tài) 基于javaweb+jsp的機(jī)房設(shè)備管理系統(tǒng) JavaWeb JavaBean JSP MVC MySQL...
摘要:基于的醫(yī)院信息管理系統(tǒng)部分代碼實(shí)現(xiàn)科室添加科室列表添加名稱科室列表編輯 基于javaweb+jsp的醫(yī)院信息管理系統(tǒng) JavaWeb JavaBean JSP MV...
摘要:基于的企業(yè)車輛管理系統(tǒng)部分代碼實(shí)現(xiàn)車輛添加車輛列表添加車牌 基于javaweb+jsp的企業(yè)車輛管理系統(tǒng) JavaWeb JavaBean JSP MVC MySQ...
摘要:基于的酒店管理系統(tǒng)部分代碼實(shí)現(xiàn)商品編輯商品列表編輯管理員沒有權(quán)限編輯將要?jiǎng)h除 基于javaweb+jsp的酒店管理系統(tǒng) JavaWeb JavaBean JSP M...
閱讀 2411·2021-11-25 09:43
閱讀 1246·2021-11-24 09:39
閱讀 742·2021-11-23 09:51
閱讀 2382·2021-09-07 10:18
閱讀 1841·2021-09-01 11:39
閱讀 2776·2019-08-30 15:52
閱讀 2589·2019-08-30 14:21
閱讀 2850·2019-08-29 16:57