html之input屬性學習
阿新 • • 發佈:2019-01-11
input控制元件域
input標記
1、input標記放在表單之間,主要的作用是在表格中建立一個數據儲存區域,它的屬性主要有name、type、value等。
name屬性用於區分同一表單中的其他資料存域。
type屬性用於設定資料存域的型別,例如text或password型別。
以下是 一些屬性的介紹
屬性 | 解釋 |
---|---|
name | 用於區分同一表單中的其它資料儲存域。 |
type | 用來設定資料儲存域的型別 text\password\radio\checkbox\file\button\submit\reset\image\hidden |
size | 用來設定文字輸入框長度。 |
value | 值。 |
maxlength | 用來設定文字輸入框的最多輸入位元組數。 |
checked | 使單選按鈕或複選框被預選。 |
知識點關聯
伺服器後臺得到submit提交的資料
當在javaweb中,使用form表單的input的submit屬性,對使用者輸入的資訊提交,對應的伺服器若想得提交的資料,應進行以下操作:
在服務中(service)
使用request.getpanamaternames()獲取這些提交資料的列舉類()
用while(){}迴圈一一提取。
Enumeration e = request.getParameterNames(); while(e.hasMoreElements()){ String name = (String) e.nextElement(); //username=aaa password=123 String value = request.getParameter(name); //使用反射技術,提取資訊到另外一個類中 BeanUtils.setProperty(bean, name, value); }