You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>添加花卉</title>
</head>
<body>
<form action="item/add" method="post">
<table>
<tr>
<td>花卉编号:</td>
<td width="20"></td>
<td><input type="text" name="id" placeholder="请输入花卉编号" /></td>
</tr>
<tr>
<td>花卉名称:</td>
<td width="20"></td>
<td><input type="text" name="name" placeholder="请输入花卉名称" /></td>
</tr>
<tr>
<td>花卉价格:</td>
<td width="20"></td>
<td><input type="text" name="price" value="" class="bg" placeholder="请输入花卉价格" /></td>
</tr>
<tr>
<td>折扣:</td>
<td width="20"></td>
<td><input type="text" name="zk" value="" placeholder="请输入折扣" /></td>
</tr>
<tr>
<td>花卉一级类目:</td>
<td width="20"></td>
<td><input type="text" name="yiji.name" placeholder="请输入一级类目" /></td>
</tr>
<tr>
<td>花卉二级类目:</td>
<td width="20"></td>
<td><input type="text" name="erji.name" placeholder="请输入二级类目" /></td>
</tr>
<tr>
<td>商品主图:</td>
<td width="20"></td>
<td><input type="file" name="url1" /></td>
</tr>
<tr>
<td>副图1: </td>
<td width="20"></td>
<td><input type="file" name="url2" /></td>
</tr>
<tr>
<td>描述:</td>
<td width="20"></td>
<td><textarea name="ms" rows="5" cols="35"></textarea></td>
</tr>
<tr>
<td align="right"><input type="reset" value="重置"></td>
<td></td>
<td align="center">
<input type="submit" value="添加">
</td>
</tr>
</table>
</form>
</body>
</html>