11.30

发布时间 2023-12-18 22:13:03作者: 张佳木

今日学习内容

<%--
Created by IntelliJ IDEA.
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>出差申请</title>
</head>
<body>
<div class="container">
<form action="chuchai_end.jsp">
<h1>出差申请单</h1>
<p>出差人姓名: </p><input type="text" name="name" >
<p>部门:</p><input type="text" name="department" >
<p>目的地:</p><input type="text" name="destination" >
<p>暂定出发日期:</p><input type="text" name="departuredate" >
<p>预计返回日期:</p><input type="text" name="returndate" >
<p>出差类别:
<input type="radio" checked="checked" value="业务洽谈" name="Type"/>业务洽谈
<input type="radio" name="Type" value="培训">培训
<input type="radio" name="Type" value="会议">会议
<input type="radio" name="Type" value="其他">其他 <input type="Typecontent" name="Type" >
</p>
出差事由: <textarea name="Reason" cols="30" rows="10"></textarea><br>
<input type="submit" value="提交">
</form>
</div>
</body>
</html>