?? addresumeinfo.jsp
字號:
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="2"></td>
</tr>
<tr>
<td><table width=100% border=0 cellpadding=5 cellspacing=1 align=center bgcolor="#dddddd">
<form name=resumeForm action=/doTradeReg.do method=post target="_blank">
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>姓名<input name="resume_id" type="hidden" value=<%=resume_id%>></td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left><input name="name" type="text" size=15 maxlength=30 value="<%=userName%>" readonly>(不能修改)
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>畢業學校</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping"><input name="grad_from" type="text" size=50 maxlength=50>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>專業</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="profession" type="text" size=50 maxlength=50 >
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>期望薪資</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="wish" type="text" size=5 maxlength=10>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>出生年月</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="born_date" id="born_date" readonly type="text" size=10 onfocus="setday(this);" style="width:93px" >(yyyy-mm-dd)</td>
</div>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>籍貫</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="born_site" type="text" size=25 maxlength=50>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>聯系電話</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="phone" type="text" size=15 maxlength=15>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>電子郵件</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="email" type="text" size=30 maxlength=50>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>固定電話</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="tel" type="text" size=15 maxlength=15 >
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>聯系地址</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="addr" type="text" size=50 maxlength=50>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>求職職位</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="position" type="text" size=50 maxlength=50>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>年齡</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<input name="age" type="text" size=2 maxlength=3 onkeyup="if(isNaN(value))execCommand('undo')">歲 (僅限數字)
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>性別:</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<select name=remark>
<%
if(sexList != null && sexList.size()>0)
{
for(int i=0;i<sexList.size();i++)
{
HashMap map=(HashMap)sexList.get(i);
String value=map.get("para_code1").toString();
String name=map.get("para_code2").toString();
%>
<option value="<%= value %>"><%= name %></option>
<%
}
} %>
</select>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>學歷</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<select name=degree>
<%
if(degreeList != null && degreeList.size()>0)
{
for(int i=0;i<degreeList.size();i++)
{
HashMap map=(HashMap)degreeList.get(i);
String value=map.get("para_code1").toString();
String name=map.get("para_code2").toString();
%>
<option value="<%= value %>"><%= name %></option>
<%
}
} %>
</select>
</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>工作年限</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left><div class="ping"><input name="job_age" type="text" size=1 maxlength=2 onkeyup="if(isNaN(value))execCommand('undo')">年 (僅限數字)</div>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>畢業年份</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left><div class="ping"><input name="grad_date" id="grad_date" readonly type="text" size=10 onfocus="setday(this);" style="width:93px">(yyyy-mm-dd)</div></td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right valign=top>工作經歷</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left><div class="ping"><textarea name="work_history" style=display:none></textarea>
<iframe ID=work_history src=/www/ewebeditor/ewebeditor.htm?id=work_history&style=coolblue&root_id=<%=resume_id%> frameborder=0 scrolling=no width=600 HEIGHT=350></iframe></div></td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right valign=top>特殊技能</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left><div class="ping"><textarea name="spec" style=display:none></textarea>
<iframe ID=spec src=/www/ewebeditor/ewebeditor.htm?id=spec&style=coolblue&root_id=<%=resume_id%> frameborder=0 scrolling=no width=600 HEIGHT=350></iframe></div></td>
</tr>
<input name="trade_type_code" type="hidden" value="0260">
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;" align=right>所獲證書</td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" align=left>
<div class="ping">
<select name="cert" >
<%
if(certList != null && certList.size()>0)
{
for(int i=0;i<certList.size();i++)
{
HashMap map=(HashMap)certList.get(i);
String value=map.get("para_code1").toString();
String name=map.get("para_code2").toString();
%>
<option value="<%= value %>"><%= name %></option>
<%
}
} %>
</select>
</div>
</td>
</tr>
<tr>
<td style="background-color:#ffffff; color:#000000; font-size:12px;" colspan=2 align="center"><INPUT name="advshow" type="checkbox" value="0" onclick="check_none(resumeForm)">
以上資料正確無誤。
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:13px;padding-top:10px;padding-bottom:10px;" colspan=2 align=center><input
class ="tjan" name="submit1" type="button" value="" disabled="true" onclick="confirmsub(resumeForm)">
</td>
</tr>
</form>
</table></td>
</tr>
<tr>
<td height="13"></td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -