「Spring MVC」form:selectタグのcssClass属性のサンプル

環境
Spring 5.2.4.RELEASE

構文
<form:select cssClass="xxx" path = “xxx">
form:selectタグは、HTMLの<select>タグとその子要素のoptionタグを生成します。
cssClassはHTML標準のclass属性です。

CSSコード

<style>
  .itemSel{width:80%;}
</style>

JSPコード

<form:select cssClass="itemSel" path="userSearchCode">
   <form:options items="${userList}" itemLabel="label" itemValue="value"></form:options>
</form:select>

 

SpringMVC

Posted by arkgame