·您的位置: 首页 » 资源教程 » 编程开发 » JAVA、JSP » Struts学习笔记: Html标签库学习(Form标签)

Struts学习笔记: Html标签库学习(Form标签)

类别: JSP教程  评论数:0 总得分:0
Html标签库(Form部分)
1. <html:form>
 
 <html:form action="/regGuest"></html:form>
=>
 <form name="regGuestForm" method="post" action="/AddressBook/regGuest.do">
2. <html:text>
 
 <html:text property="name"/>
=>
 <input type="text" name="name" value="">
3. <html:cancel>
 <html:cancel>俺要立即取消操作!</html:cancel>
=>
 <input type="submit" name="org.apache.struts.taglib.html.CANCEL" value="俺要立即取消操作!" onclick="bCancel=true;">
 Action的execute中通过isCancel(request)来判断是否为cancel提交
4. <html:reset/>
 <html:reset>重新填写</html:reset>
=>
 <input type="reset" value="重新填写">
5. <html:submit>
 <html:submit>偶要提交表单</html:submit>
=>
 <input type="submit" value="偶要提交表单">
6. <html:hidden>
 <html:hidden property="name"/><p/>
 <html:hidden property="name" value="777"/><p/>
 <html:hidden property="name" write="true"/><p/>
=>
 <input type="hidden" name="name" value=""><p/>
 <input type="hidden" name="name" value="777"><p/>
 <input type="hidden" name="name" value=""><p/>
提交后的Html:
 <input type="hidden" name="name" value="fds"><p/>
 <input type="hidden" name="name" value="777"><p/>
 <input type="hidden" name="name" value="fds">fds<p/>
7. <html:checkbox>
 <html:checkbox property="programLang"/>
=>
 <input type="checkbox" name="programLang" value="on">
 <html:checkbox property="programLang" value="true"/>
<%-- 如果用户选择了这个checkbox,则相应的FormBean的programLang的值就为true --%>
=>
 <input type="checkbox" name="programLang" value="true">
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1