readonly : input type=text에서 텍스트를 표시하고 수정하지 못하고 오직 읽게만 만들어 줌
required : 폼에서 submit 버튼을 눌렀을 때 필수로 입력하게 지정하여 필수로 입력되어야 할 필드를 설정할 수 있음
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!
DOCTYPE
html>
<html lang
=
"kr"
>
<head>
<meta charset
=
"utf-8"
>
<title>
키보드와 하루
</title>
</head>
<body>
<form>
1
<label>
readonly 속성 :
</label>
<input type
=
"text"
value
=
"읽기만 가능합니다"
readonly
><br><br>
2
<label>
required 속성 :
</label>
<input type
=
"text"
required
>
</form>
</body>
</html>
|
[html5] multiple,datalist - 데이터 목록 나열 (0) | 2021.02.19 |
---|---|
[html5] size,maxlength,minlength - 길이, 최대 글자 수, 최소 글자 수 (0) | 2021.02.18 |
[html5] autofocus,placeholder - 커서 위치,힌트 표시 (0) | 2021.02.16 |
[html5] input type = image,button,file - 이미지 버튼, 버튼 , 파일 첨부 (0) | 2021.02.15 |
[html5] input type = time,datetime-local,submit,reset - 시간,날짜와시간,전송,재작성 (0) | 2021.02.10 |