[html] input的size與maxlenth
html的 input 標籤
size:欄位寬度
maxlength:最多可輸入字元
size:欄位寬度
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input name="zip" size="3"> |
maxlength:最多可輸入字元
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input name="zip" maxlength="3"> |