HTML
<input> - minlength, maxlength
자라나라나무나무나
2022. 6. 1. 20:46
minlength
: input태그의 최소 글 길이 갯수
maxlength
: input태그의 최대 글 길이 갯수
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="printpage.css" />
</head>
<body>
<h2>Form</h2>
<form action="" method="GET">
<label>
TEXT : <input type="text" name="text" minlength="5" maxlength="10" />
</label>
<button type="submit">제출</button>
</form>
</body>
</html>