⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 简历.html

📁 开源数据库exists数据库操作
💻 HTML
字号:
<?xml version="1.0" encoding="UTF-8"?>
<html><head><title>输入表单</title></head><body><script language="javascript" src="Calendar.js"></script><script language="javascript">function checkFun(checkName, textName) {
if(checkName.checked == true)
{
textName.style.visibility = "visible";
}else
{
textName.style.visibility = "hidden";
}
}

function comboFun(comboTest, textTest) {
if(comboTest.value == "其它")
{
textTest.style.visibility = "visible";
}
else
{
textTest.style.visibility = "hidden";
}
}

function deleteNode(parentId) {
 var parent =  document.getElementById(parentId);
var num = parent.children.length;
if(num != 0)
{
parent.removeChild(parent.children(num-1));
}
}

function insertNodeEducation(){
var tag;
var img;
var option;
var liTag;
var parent = document.getElementById("Education");
liTag = document.createElement("li");
parent.appendChild(liTag);
liTag.appendChild(document.createTextNode("入学时间"));
liTag.appendChild(document.createTextNode(" "));
var var_SCBIT000000006 = document.createElement("input");
var_SCBIT000000006.setAttribute("type", "text");
var_SCBIT000000006.setAttribute("name", "SCBIT000000006");
liTag.appendChild(var_SCBIT000000006);
liTag.appendChild(document.createTextNode(" "));
tag = document.createElement("a");
tag.setAttribute("href", "");
tag.onclick = function(){calendar(var_SCBIT000000006);return false;};
img = document.createElement("img");
img.setAttribute("src", "calendar.gif");
img.setAttribute("border", "0");
img.setAttribute("valign", "center");
tag.appendChild(img);
liTag.appendChild(tag);
liTag.appendChild(document.createTextNode("   "));
liTag.appendChild(document.createTextNode("学校"));
liTag.appendChild(document.createTextNode(" "));
var var_SCBIT000000007 = document.createElement("select");
var_SCBIT000000007.setAttribute("name", "SCBIT000000007");
liTag.appendChild(var_SCBIT000000007);
option = document.createElement("option");
option.setAttribute("value", "复旦大学");
option.appendChild(document.createTextNode("复旦大学"));
var_SCBIT000000007.appendChild(option);
option = document.createElement("option");
option.setAttribute("value", "上海交通大学");
option.appendChild(document.createTextNode("上海交通大学"));
var_SCBIT000000007.appendChild(option);
option = document.createElement("option");
option.setAttribute("value", "同济大学");
option.appendChild(document.createTextNode("同济大学"));
var_SCBIT000000007.appendChild(option);
option = document.createElement("option");
option.setAttribute("value", "其它");
option.appendChild(document.createTextNode("其它"));
var_SCBIT000000007.appendChild(option);
liTag.appendChild(document.createTextNode(" "));
var var_SCBIT000000007Other = document.createElement("input");
var_SCBIT000000007Other.setAttribute("type", "text");
var_SCBIT000000007Other.setAttribute("name", "SCBIT000000007Other");
var_SCBIT000000007Other.style.visibility = "hidden";
liTag.appendChild(var_SCBIT000000007Other);
var_SCBIT000000007.onchange = function(){comboFun(var_SCBIT000000007, var_SCBIT000000007Other);};
liTag.appendChild(document.createTextNode("   "));
}

</script><h3 align="center">简历</h3><p><basefont size="3" /><Form method="post" action="简历.jsp" name="myForm"><dl><dd><hr /><dl><dt><h3>基本信息</h3></dt><dd>姓名 <input type="text" name="SCBIT000000003" /></dd><dd>出生年月 <input type="text" name="SCBIT000000004" />   <a href="" onClick="calendar(document.myForm.SCBIT000000004);return false;"><img src="calendar.gif" border="0" valign="center" /></a></dd><dd>性别 <select name="SCBIT000000005"><option value="帅哥">帅哥</option><option value="美女">美女</option></select></dd></dl></dd><dd><hr /><dl><dt><h3>教育背景     <a href="" onClick="insertNodeEducation();return false;">增加</a>   <a href="" onClick="deleteNode('Education');return false;">删除</a></h3><ol id="Education" /></dt></dl></dd><dd><hr /><dl><dt><h3>爱好</h3></dt><dd>唱歌<input type="checkbox" name="SCBIT000000008" /></dd><dd>跳舞<input type="checkbox" name="SCBIT000000009" /></dd><dd>编程<input type="checkbox" name="SCBIT000000010" /></dd><dd>阅读<input type="checkbox" name="SCBIT000000011" /></dd><dd>其它<input type="checkbox" name="HobbyOtherChoice" onClick="checkFun(document.myForm.HobbyOtherChoice, document.myForm.HobbyOtherText)" />   <input type="text" name="HobbyOtherText" style="visibility:hidden" /></dd></dl></dd></dl><div align="center"><input type="submit" value="确定" />   <input type="reset" value="重置" /></div></Form></p></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -