jsp制作商品信息表单,内容包括(商品名、价格、数量、生产厂家、电话)
时间: 2023-05-23 11:02:51 浏览: 76
jsp表单
可以使用以下的 JSP 代码来制作商品信息表单:
```jsp
<html>
<body>
<h2>商品信息表单</h2>
<form action="submit.jsp" method="POST">
<label for="productName">商品名:</label>
<input type="text" id="productName" name="productName"><br><br>
<label for="price">价格:</label>
<input type="text" id="price" name="price"><br><br>
<label for="quantity">数量:</label>
<input type="text" id="quantity" name="quantity"><br><br>
<label for="manufacturer">生产厂家:</label>
<input type="text" id="manufacturer" name="manufacturer"><br><br>
<label for="phone">电话:</label>
<input type="text" id="phone" name="phone"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
这一段 JSP 代码创建了一个包含商品名、价格、数量、生产厂家、电话的表单,并将它们提交到名为 "submit.jsp" 的页面处理。
阅读全文