FrameWork/Struts

[struts 1.3] struts tag html

햄볶는뚱땡이 2011. 6. 27. 22:05

■ Struts Html 태그

1. base : <base>
2. button : <input type="button">
3. checkbox, multibox : <input type="checkbox">
4. errors : 누적된 에러메시지 출력
5. file : <input type="file">
6. form : <form>
7. hidden : <input type="hidden">
8. html : <html>
9. image : <input type="image">
10. img : <img>
11. link : <a>
12. message : 누적된 에러메시지 출력
13. option, options : <option>
14. password : <input type="password">
15. radio : <input type="radio">
16. reset : <input type="reset">
17. rewrite : URL로 코딩된 경로를 출력
18. select : <select>
19. submit : <input type="submit">
20. text : <input type="text">
21. textarea : <textarea>

■ 공통 프로퍼티

1. name : ActionForm의 이름이나 이 컨트롤의 데이터를 제공하기 위한 또 다른 자바빈의 이름. 만약 열거되지 않으면 둘러싼 폼 태그와 관련된 그 ActionForm 빈이 사용된다.

2. on* : 각각의 html 태그는 적합한 Java 스크립트 이벤트 핸들러 (onblur, onchange, onclick, ondbclick, onfocus, onkeydown, onkeypress, onkeyup, onmousedown, onmousemove, onmouseout, onmouseover, onmouseup, onreset, onsubmit) 를 포함한다.

3. accesskey : 접근가능 키 캐릭터.

4. tabindex : 현재 문서를 위해 현재의 구성 요소의 위치를 탭 순서로 열거하는 프로퍼티

5. style : HTML 구성요소로 지원되는 CSS 스타일

6. StyleClass : HTML 구성요소로 지원되는 스타일시트 클래스 

예전에 가지고 있던 자료들인데..
지금도 스트럿츠 1.3 을 쓰는곳이 남아 있는지는 모르겠다...
자료들 정리하면서 블로그에 남긴다.