<html:base/> 類似html的<base/>標簽
<html:html xhtml="true" lang="true"> 類似與<html>標簽
<html:link page="/jsp/simple/source.jsp">
XXX
</html:link> 類似<a href=?>XXX</a>
<html:errors/> 顯示錯誤
<html:form action="/processSimple"> form,并定義一個Action
<html:text property="name" size="40" maxlength="50"/> 文本輸入框
<html:password property="secret" size="40" maxlength="50"/> 密碼輸入框
<html:select property="color">
<html:option value="red">Red</html:option>
<html:option value="green">Green</html:option>
<html:option value="blue">Blue</html:option>
</html:select> 靜態的下拉框
<html:radio property="rating" value="1">Actually, I hate it.</html:radio>
<html:radio property="rating" value="2">Not so much.</html:radio>靜態單選按鈕
<html:textarea property="message" cols="40" rows="6"/> 大文本框
<html:hidden property="hidden" value="Sssh! It's a secret. Nobody knows I'm here."/> 隱藏域
<html:submit>
<bean:message key="button.submit" />來自資源文件的文字
</html:submit>提交按鈕
<html:cancel/>取消按鈕
|