📄 newpetowner.jsp
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@include file="taglibs.jsp" %>
<html>
<head>
<title>增加宠物主人</title>
<link rel="stylesheet" type="text/css" href="css/table.css">
<link rel="stylesheet" type="text/css" href="css/default.css">
</head>
<body>
<html:form action="/topetOwnerOper?method=add">
<table class="list" width="100%" border="0" align="center" bgcolor="#FFFFFF">
<tr>
<td width="30%" align="right">
所有人名称:
</td>
<td width="70%" align="left">
<html:text property="petOwnerName" />
<html:errors property="petOwnerName" />
</td>
</tr>
<tr>
<td align="right">
地址:
</td>
<td>
<html:text property="petOwnerAddress" />
<html:errors property="petOwnerAddress" />
</td>
</tr>
<tr>
<td align="right">
城市:
</td>
<td>
<html:text property="petOwnerCity" />
<html:errors property="petOwnerCity" />
</td>
</tr>
<tr>
<td align="right">
电话号码:
</td>
<td>
<html:text property="petOwnerTelNo" />
<html:errors property="petOwnerTelNo" />
</td>
</tr>
<tr>
<td align="right">
性别:
</td>
<td>
<html:radio property="sex" value="男" />
男
<html:radio property="sex" value="女" />
女
</td>
</tr>
<tr>
<td align="right">
爱好:
</td>
<td>
<html:multibox property="hobbies" value="0" />
音乐
<html:multibox property="hobbies" value="1" />
武术
<html:multibox property="hobbies" value="2" />
爬山
<html:multibox property="hobbies" value="3" />
旅游
</td>
</tr>
<tr>
<td align="right">
备注:
</td>
<td>
<html:textarea property="demo" rows="4" cols="30" />
</td>
</tr>
<tr align="center">
<td colspan="2">
<input type="submit" name="Submit" value="增加" onclick="window.close();">
<input type="reset" name="Submit" value="放弃" onclick=window.close();>
</td>
</tr>
</table>
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -