Spring Tag의 FORM 관련 객체 사용법 HTML Tag와의 비교

By | 1월 30, 2009

* form 객체 이름

  HTML - <form name="이름"/>
  Spring - <form:form commandName="이름"/>   
                 => commandName은 HTML렌더링 후 id가 되므로 getElementById()를 사용해서 참조할 수 있다.

* input 객체 이름

  HTML - <input name="이름"/>
  Spring - <form:input path="이름"/>
              => HTML의 input 태그도 <form:form> 태그 안에 있으면 input의 name이 커맨드객체의 멤버변수로
                   맵핑 가능하다.
 

* CSS 스타일 적용 (class)

  HTML - <input class="textbox01"/>
  Spring - <form:input cssClass="textbox01"/>

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments