📄 addstaffbasicinfo.jsp
字号:
</select>
年
<select name="birthmonth">
<option value="0" selected="selected">
选择
</option>
<%
for (int i = 1; i < 13; i++) {
String stri = Integer.toString(i);
if (stri.length() == 1) {
stri = "0" + stri;
}
%>
<option value="<%=stri%>">
<%=stri%>
</option>
<%
}
%>
</select>
月
<select name="birthday">
<option value="0" selected="selected">
选择
</option>
<%
for (int i = 1; i < 32; i++) {
String stri = Integer.toString(i);
if (stri.length() == 1) {
stri = "0" + stri;
}
%>
<option value="<%=stri%>">
<%=stri%>
</option>
<%
}
%>
</select>
日
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
民 族
</div>
</td>
<td bgcolor="#FFFFFF">
<select name="folk">
<option value="0" selected="selected">
请选择
</option>
<%
ArrayList flist = (ArrayList) request.getAttribute("folklist");
if (flist == null) {
flist = new ArrayList();
}
if (flist != null && flist.size() != 0) {
for (int i = 0; i < flist.size(); i++) {
Folkinfo fvo = (Folkinfo) flist.get(i);
%>
<option value="<%=fvo.getId()%>">
<%=fvo.getFolkname()%>
</option>
<%
}
}
%>
</select>
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
籍 贯
</div>
</td>
<td bgcolor="#FFFFFF">
<select name="nativeplace">
<option value="0">
---请选择---
</option>
<%
ArrayList alist = (ArrayList) request.getAttribute("arealist");
if (alist == null) {
alist = new ArrayList();
}
if (alist != null && alist.size() != 0) {
for (int i = 0; i < alist.size(); i++) {
Area avo = (Area) alist.get(i);
%>
<option value="<%=avo.getAreaid()%>">
<%=avo.getAreaname()%>
</option>
<%
ArrayList clist = (ArrayList) request.getAttribute("citylist");
if (clist == null) { clist = new ArrayList(); }
if (clist != null && clist.size() != 0) {
for (int j = 0; j < clist.size(); j++) {
City cvo = (City) clist.get(j);
if ((cvo.getCityid().substring(0, 1)).equals(avo.getAreaid())) {
%>
<option value="<%=cvo.getCityid()%>">
-
<%=cvo.getCityname()%>
</option>
<%
}
}
}
}
}
%>
</select>
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
最高学历
</div>
</td>
<td bgcolor="#FFFFFF">
<select name="mostdulevel">
<option value="0">
请选择
</option>
<%
ArrayList elist = (ArrayList) request.getAttribute("edulevelinfolist");
if (elist == null) {elist = new ArrayList();}
if (elist != null && elist.size() != 0) {
for (int i = 0; i < elist.size(); i++) {
Edulevelinfo evo = (Edulevelinfo) elist.get(i);
%>
<option value="<%=evo.getId()%>">
<%=evo.getEdulevelname()%>
</option>
<%
}
}
%>
</select>
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
婚育状况
</div>
</td>
<td bgcolor="#FFFFFF">
<input type="radio" name="wedlock" value="未婚" checked />
未婚
<input type="radio" name="wedlock" value="已婚" />
已婚
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
学 位
</div>
</td>
<td bgcolor="#FFFFFF">
<input name="degree" type="text" size="16" />
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
身份证号码
</div>
</td>
<td bgcolor="#FFFFFF">
<input type="text" name="certificatenum" />
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
政治面貌
</div>
</td>
<td bgcolor="#FFFFFF">
<select name="politycircs">
<option value="0">
请选择
</option>
<%
ArrayList pclist = (ArrayList) request.getAttribute("politycircsinfolist");
if (pclist == null) {
pclist = new ArrayList();
}
if (pclist != null && pclist.size() != 0) {
for (int i = 0; i < pclist.size(); i++) {
Politycircsinfo pcvo = (Politycircsinfo) pclist.get(i);
%>
<option value="<%=pcvo.getId()%>">
<%=pcvo.getPolitycircsname()%>
</option>
<%
}
}
%>
</select>
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
直接领导
</div>
</td>
<td bgcolor="#FFFFFF">
<select name="directsuperior">
<option value="0">
请选择
</option>
<%
ArrayList directlist = (ArrayList) request.getAttribute("directlist");
if (directlist == null) {
directlist = new ArrayList();
}
if (directlist != null && directlist.size() != 0) {
for (int i = 0; i < directlist.size(); i++) {
User uvo = (User) directlist.get(i);
%>
<option value="<%=uvo.getUsername()%>">
<%=uvo.getRealname()%>
</option>
<%
}
}
%>
</select>
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
户籍地址
</div>
</td>
<td bgcolor="#FFFFFF">
<input name="nativeaddress" type="text" size="30" />
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
住宅电话
</div>
</td>
<td bgcolor="#FFFFFF">
<input name="beforetelephone" type="text" size="12" maxlength="4" />
-
<input name="behindtelephone" type="text" size="12" maxlength="15" />
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
常用邮箱
</div>
</td>
<td bgcolor="#FFFFFF">
<input type="text" name="email" />
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
手机号码
</div>
</td>
<td bgcolor="#FFFFFF">
<input name="mobile" type="text" size="11" />
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
专业技术职称
</div>
</td>
<td bgcolor="#FFFFFF">
<input type="text" name="profession" />
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
其它资格证书
</div>
</td>
<td bgcolor="#FFFFFF">
<input type="text" name="cert" />
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
方言/外语能力
</div>
</td>
<td bgcolor="#FFFFFF">
<input type="text" name="forelanguagelevel" />
</td>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
计算机技能
</div>
</td>
<td bgcolor="#FFFFFF">
<input name="computerlevel" type="text" size="25" />
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
上传照片
</div>
</td>
<td height="20" bgcolor="#FFFFFF">
<input name="picture" type="file" class="ying" size="18" />
</td>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
在职状态
</div>
</td>
<td height="20" bgcolor="#FFFFFF">
<input type="radio" name="staffstatus" value="试用" checked />
试用
<input type="radio" name="staffstatus" value="正式员工" />
正式员工
<input type="radio" name="staffstatus" value="离职" />
离职
</td>
</tr>
<tr>
<td bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
常住地址及邮编
</div>
</td>
<td bgcolor="#FFFFFF" colspan="3">
<input type="text" name="address" size="55" />
-
<input name="postalcode" type="text" size="6" />
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
岗位职责:
</div>
</td>
<td height="20" bgcolor="#FFFFFF" colspan="3">
<textarea name="jobfunction" cols="90" rows="6"></textarea>
</td>
</tr>
<tr>
<td height="20" bgcolor="#A4B5E3" style="padding-right:4px;">
<div align="center">
岗位要求:
</div>
</td>
<td height="20" bgcolor="#FFFFFF" colspan="3">
<textarea name="jobrequest" cols="90" rows="8"></textarea>
</td>
</tr>
<tr>
<td height="30" colspan="4" bgcolor="#FFFFFF">
<div align="center">
<input name="Submit3" type="submit" value="保存基本资料" />
</div>
</td>
</tr>
</table>
</form>
</body>
</html>
<script type="text/javascript">
Calendar.setup({
inputField : "liftdate", // id of the input field
ifFormat : "%Y-%m-%d", // format of the input field
button : "btn", // trigger for the calendar (button ID)
align : "Br", // alignment (defaults to "Bl")
singleClick : true
});
Calendar.setup({
inputField : "zhuanzhengdate", // id of the input field
ifFormat : "%Y-%m-%d", // format of the input field
button : "btn2", // trigger for the calendar (button ID)
align : "Br", // alignment (defaults to "Bl")
singleClick : true
});
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -