Input的size與maxlength屬性的區別
最近做專案用到input的size和maxlength屬性,以前只顧用沒有用心去看看這2個標籤的區別,今天週末baidu了一下,有所理解。特記錄於此!
<p>Name: <input type=”text” name=”fullname” maxlength=”5″ /></p>
<p>Name2: <input type=”text” name=”fullname” size=”5″ /></p><i>
maxlength=”5″,則input輸入框中只能夠輸入5個字元<br/>
size=”5″,表示input輸入框只顯示5個可見的字元,但你可以輸入`無數`多字元內容<br/>
即:size屬性規定輸入欄位的寬度(此處即是Name2文字框只顯示5個字元大小的寬度),<br/>
由於 size 屬性是一個視覺化的設計屬性,我們應使用 CSS 中的width來代替它。
CSS 語法:<input style=”width:100px”/>
</i>
<br/>
相關文章
- maxlength和size屬性區別
- input屬性disabled和readonly的區別(轉)
- <input>文字框的readonly和disabled屬性區別
- 為textarea新增maxlength屬性
- raw_input() 與 input()的區別
- 更改input的type屬性
- python中input()與raw_input()的區別Python
- 標籤上title與alt屬性的區別
- js 物件方法、類方法、原型方法的區別;私有屬性、公有屬性、公有靜態屬性的區別JS物件原型
- Blob size 屬性
- File size 屬性
- Map size 屬性
- Set size 屬性
- 為textarea新增maxlength屬性程式碼例項
- input與change事件區別事件
- CSS中px和em屬性的特點與區別CSS
- KEEP POOL和CACHE屬性的區別
- naturalWidth與width屬性區別
- Struts2的屬性驅動與模型驅動的區別模型
- input和:input選擇器的區別
- size resize與capacity reserve之間的區別
- <input> readonly屬性
- $(":input")和$("input")區別
- JavaScript select size 屬性JavaScript
- CSS font-size屬性CSS
- jQuery中判斷input的disabled屬性jQuery
- backup archivelog delete input 與delete all input 區別Hivedelete
- HDFS 塊和 Input Splits 的區別與聯絡
- IL角度理解C#中欄位,屬性與方法的區別C#
- rman 中的 delete all input 和 delete input 的區別delete
- python的dir()和__dict__屬性的區別Python
- 標籤的readonly和disabled屬性的區別
- C#中的屬性和欄位的區別C#
- CSS樣式中的right屬性和margin-right屬性的區別CSS
- 文字框的readonly和disabled屬性區別
- vue計算屬性 監聽 方法的區別Vue
- Vue中計算屬性computed與偵聽器watch的區別Vue
- Android中visibility屬性INVISIBLE與GONE的區別AndroidGo