html标签
|
structs标签
|
功能
|
<html>
|
<html:html>
|
|
<base>
|
<html:base>
|
生成当前网页的url绝对路径
|
|
|
|
<a href="">
|
<html:link>
|
forward:指定全局转发连接
|
|
|
href:指定完整url链接
|
|
|
page:指定相对于当前网页的url
|
|
<html:rewrite>
|
用于输出超链接中uri部分,即主机和端口号以后的内容
|
|
|
|
<image src="">
|
<html:image>
|
page:指定相对与当前页面的uri
|
|
|
|
<form>
|
<html:form>
|
name:指定actionform的名字
|
|
|
|
<input type="text">
|
<html:text>
|
property:相当于name属性
|
|
|
|
<imput type="submit">
|
<html:cancel>
|
用于取消请求,实现需要在action内编程
|
|
<html:submit>
|
用于提交表单
|
|
|
|
<input type="reset">
|
<html:reset>
|
用于表单清空
|
|
|
|
<input type="checkbox">
|
<html:checkbox>
|
property:相当于name属性
|
|
|
value:选项的值
|
|
<html:mutilbox>
|
property:相当于name属性value:选项的值
|
|
|
|
|
|
|
<imput type="radio">
|
<html:radio>
|
property:相当于name属性value:选项的值
|
|
|
|
<select>
|
<html:select>
|
size:在网页上显示的可选项目的个数
|
|
|
property:相当于name属性
|
|
|
multipel是否多选
|
|
|
选项为:<html:option value>显示文本</>选项
|
|
|
|
<option>
|
<html:option>
|
|
|
<html:options>
|
property:相当于value(实际值)
|
|
|
lableproperty:显示值
|
|
|
collection选项集合
|
|
<html:optionCollection>
|
property:选项集合
|
|
|
value:实际值
|
|
|
lable:显示值
|
|
|
|
<input type="file">
|
<html:file>
|
文件上传标签需把
|
|
|
<html:from method="post" enctype="mutipart/form-data">
|
|
|
property:文件绝对路径
|
|
|
|
|
<html:errors>
|
输出错误消息,错误消息来源于ActionMessages、ActionErrors
|
|
|
name:指定ActionMessages在request和session中的key
|
|
|
property:指定消息属性
|
|
|
bundle:指定资源文件
|
|
|
|
|
<html:message>
|
与<html:errors>类似
|