SpringWeb <form:textarea>標籤:定義表單的文字域元件

2020-07-16 10:05:05
該標籤用於定義表單的文字域元件,它可以接收使用者輸入的大量文字,可以輸入多行文字。

語法:

<form:textarea path="path" cols="cols" rows="rows"/>

引數說明:
  • path:與表單物件系結的屬性名稱。
  • cols:文字域元件每行字元的數量。
  • rows:文字域元件的行數。

範例

模擬一個控制器的表單物件,定義文字域元件,關鍵程式碼如下:
<%@page contentType="text/html" import="java.util.*" pageEncoding="UTF-8"%>
  <!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
  <%@taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
    <%
       class NewBean{
         private String text="在這裡輸入文字";//定義一個字串
         public void setText(String text){  //生成get和set方法
           this.text=text;
         }
       public String getText(){
         return text;
         }
       }
       NewBean fanBean = new NewBean();
       request.setAttribute("command",fanBean);
     %>
      <form:form>
        請輸入你對本站的看法:<br>
        <form:textarea path="text" cols="20" rows="8"/>
        <!--定義一個文字域-->
      </form:form>