欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Struts:form标签

程序员文章站 2023-12-22 10:31:40
...

Form标签用于提交数据
1、使用struts标签库

**addProduct.jsp:**
<%@ taglib prefix="s" uri="/struts-tags" %>
 
<html>
 
<body>
 
<s:form action="addProduct">
 
  <s:textfield name="product.name" label="product name" />
  <s:submit value="Submit" />
  
</s:form>
 
</body>
</html>

**struts.xml:**
<struts>
<package>
 	<action name="addProduct" class="showProduct.ProductAction" method="add">
 		<result name="show">show.jsp</result>
 	</action> 
</package>
 
</struts>

2、访问http://127.0.0.1/addProduct.jsp,通过浏览器查看源码(F12)可以发现,struts把表单里的内容自动转换成了table:

<form id="addProduct" name="addProduct" action="addProduct.action" method="post">
<table class="wwFormTable">
 
  <tr>
    <td class="tdLabel"><label for="addProduct_product_name" class="label">product name:</label></td>
    <td
><input type="text" name="product.name" value="" id="addProduct_product_name"/></td>
</tr>
 
  <tr>
    <td colspan="2"><div align="right"><input type="submit" id="addProduct_0" value="Submit"/>
</div></td>
</tr>
 
</table></form>

效果如图所示:
Struts:form标签

相关标签: struts struts2

上一篇:

下一篇: