📄 index.jsp~3~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<html>
<title>填写个人信息</title>
<h1>欢迎填写在线简历 ! !</h1>
<body>
<f:view>
<h:outputText value="请输入下列详细信息: "/>
<h:form>
<table>
<tr>
<td><h:outputText value="姓名: "></h:outputText></td>
<td><h:outputText value="#{form.name}"></h:outputText></td>
</tr>
<tr>
<td><h:outputText value="出生年份: "></h:outputText></td>
<td><h:selectOneListbox size="5" validator="#{form.yearOfBirth}">
<f:selectItems value="#{form.yearItems}"/></h:selectOneListbox></td>
</tr>
<tr>
<td><h:outputText value="技能"></h:outputText></td>
<td><h:selectManyCheckbox value="#{form.skills}">
<f:selectItems value="#{form.skillSets}"/></h:selectManyCheckbox></td>
</tr>
<tr>
<td><h:outputText value="外语语种:"></h:outputText></td>
<td><h:selectManyListbox value="#{form.languageList}">
<f:selectItems value="#{form.languageList}"/></h:selectManyListbox></td>
</tr>
<tr>
<td><h:outputText value="请选择您应聘的职位: "></h:outputText></td>
<td><h:selectOneRadio value="#{form.designation}" layout="pageDirection">
<f:selectItems value="#{form.designationList}"/></h:selectOneRadio></td>
</tr>
<tr>
<td><h:outputText value="是否允许通过电子邮件联系你? "></h:outputText></td>
<td><h:selectBooleanCheckbox value="#{form.contactMe}"></h:selectBooleanCheckbox></td>
</tr>
</table>
<h:commandButton value="提交简历" action="showDetails" />
<h:commandLink value="查看" action="list" />
</h:form>
<h:messages />
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -