Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 백준
- 데이터베이스
- db
- TIL
- Oracle
- database
- BOJ
- jQuery
- 파이썬
- 자바
- Git
- 알고리즘
- 스프링
- flask
- 웹프로그래밍
- PYTHON
- 에러
- java
- rdbms
- sql
- javascript
- 링크
- spring
- 오라클
- 이클립스
- 자바스크립트
- mybatis
- 플라스크
- eclipse
- mysql
Archives
- Today
- Total
기록과 정리의 공간
[HTML] form태그 enctype 속성 / input태그 multiple 속성 본문
form 태그
- attribute : enytype
- value
- application/x-www-form-urlencoded
- multipart/form-data
- text/plain
- 설명
- 서버로 form-data가 submit될 때 어떻게 인코딩 될 지를 명시
- 참고 : post 방식만 가능
- value
<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
input 태그
- attribute : multiple (boolean속성임)
- 설명 : 사용자가 하나의 input 요소에 한 개 이상의 값을 입력할 수 있도록 허용한다는 것을 명시
- 참고
- input의 type속성이 "email"이나 "file"일 때만 동작하는 속성이다.
<input type="file">
일 때 : 여러 파일을 선택하려면 ctrl이나 shift키를 누른 상태로 선택<input type="email">
일 때 : email 필드 안에 mail@example.com, mail2@example.com, mail3@example.com와 같이 콤마로 email을 구분하여 입력.
- input의 type속성이 "email"이나 "file"일 때만 동작하는 속성이다.
<input type="file" id="files" name="files" multiple><br><br>
'언어 > HTML&CSS&Javascript' 카테고리의 다른 글
[JQuery] ajax settings 일부 정리 (0) | 2021.01.04 |
---|---|
[JS] BOM / Window 객체 / location객체 (0) | 2020.08.02 |
[JS] HTML DOM Elements (0) | 2020.08.02 |
Comments