📄 empmain_edu_addnew.asp
字号:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/EmpMain.asp" -->
<!--#include file="EmpMain_CheckRight.asp"-->
<%call fnCheckRight("EduInfo","2")%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>教育经历</title>
<link rel="stylesheet" href="CSS/SellWellWeb.css" type="text/css">
<script language="javascript" src="js_Lib/fnCheckForm.js"></script>
<script language="javascript" src="Js_Lib/Calendar.js"></script>
<script>
//==============================??????????==================================
function fnAddNewComm(varItemName){
objOrg = eval(varItemName+"NewComm");
TmpObj = eval(varItemName+"TmpNewComm");
var newEle=objOrg.appendChild(TmpObj.cloneNode(true));
newEle.id="";
newEle.style.display="";
}
//==============================??????????==================================
function fnDelNewComm(){
var ele=window.event.srcElement;
while(ele){
if(ele.type){
if(ele.type=="NewComm"){
break;
}
}
ele=ele.parentElement;
}
ele.parentElement.removeChild(ele);
}
//====================???????===================
function fnDelOrgComm()
{
var ele=window.event.srcElement;
while(ele)
{
if(ele.type)
{
if(ele.type=="Comm")
{
break;
}
}
ele=ele.parentElement;
}
ele.parentElement.removeChild(ele);
}
</script>
</head>
<body class="body">
<form method="POST" action="EmpMain_Edu_AddNew_Process.asp">
<fieldset style="padding: 2" class="fiedset"> <legend>教育经历</legend>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#111111" class="table">
<tbody id="FileNewComm">
<tr >
<td width="14%" align="center" class="listTitle">开始日期</td>
<td width="15%" align="center" class="listTitle">结束日期</td>
<td width="28%" align="center" class="listTitle">学校</td>
<td width="24%" align="center" class="listTitle">系别</td>
<td width="11%" align="center" class="listTitle">是否毕业</td>
<td width="8%" align="center" class="listTitle" onclick="fnAddNewComm('File')" style="cursor:hand">添加</td>
</tr>
<tr class="ListValueWhite" id="FileTmpNewComm" style="display:none" type="NewComm">
<td><input name="startdate" type="text" class="text" id="startdate" onclick="getDate(this,'2')" readonly style="cursor:hand"></td>
<td><input name="enddate" type="text" class="text" id="enddate" onclick="getDate(this,'2')" readonly style="cursor:hand"></td>
<td><input name="EduSchool" type="text" class="text" id="EduSchool"></td>
<td><input name="EduDep" type="text" class="text" id="EduDep"></td>
<td><select name="EduisFinish" class="Text" id="select">
<option value="是">是</option>
<option value="否">否</option>
</select></td>
<td onclick="fnDelNewComm()" style="cursor:hand"><div align="center">删除</div></td>
</tr>
<tr class="ListValueGray" id="FileorgComm" type="Comm">
<td width="14%"><input name="startdate" type="text" class="text" id="startdate" onclick="getDate(this,'2')" readonly style="cursor:hand"></td>
<td width="15%"><input name="enddate" type="text" class="text" id="enddate" onclick="getDate(this,'2')" readonly style="cursor:hand"></td>
<td width="28%">
<input name="EduSchool" type="text" class="text" id="EduSchool"></td>
<td width="24%">
<input name="EduDep" type="text" class="text" id="EduDep"></td>
<td width="11%"> <select name="EduisFinish" class="Text" id="select">
<option value="是">是</option>
<option value="否">否</option>
</select></td>
<td width="8%" onclick="fnDelOrgComm()" style="cursor:hand"><div align="center">删除</div></td>
</tr>
</tbody>
</table>
</fieldset>
<div align="right">
<input type="hidden" value="<%=request("ID")%>" name="EmpID" >
<input type="submit" value="添加" name="B1" class="button">
<input type="button" value="返回" name="B1" class="button" onclick="window.history.back()">
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -