..

Search

maxlength

maxlength

<input> 태그의 maxlength 속성


HTML <input> 태그 ⇒


정의 및 특징

<input> 태그의 maxlength 속성은 <input> 요소에 입력할 수 있는 최대 문자수를 명시합니다.


문법

<input maxlength="숫자">


속성값

속성값   설명

숫자

 

<input> 요소에서 허용되는 최대 문자수를 명시함.

기본값은 524,288


예제
<form action="/examples/media/action_target.php" method="get">
    이름 : <input type="text" name="st_name" maxlength="8"><br>
    학번 : <input type="text" name="st_id" maxlength="12"><br>
    학과 : <input type="text" name="department"><br>
    <input type="submit">
</form>

코딩연습 ▶


지원하는 브라우저 및 버전

속성명

chrome

edge

ie

firefox

safari

opera

maxlength 1.0 지원함 2.0 1.0 1.1 1.0

연습문제