Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 플러그인
- 프로그래머
- 개발자
- PHP
- jQuery Plugin
- 웹디자인
- 사이트제작
- CSS
- 커스터마이징
- 튜닝
- 홈페이지구축
- 포트폴리오
- JQuery
- 웹에이전시
- plugin
- 안드로이드
- 고도몰
- work6.kr
- 웹퍼블리싱
- 3D프린터
- 쇼핑몰구축
- 홈페이지제작
- 쇼핑몰제작
- 워크식스
- 웹개발자
- 쇼핑몰
- 홈페이지
- 제이쿼리
- 웹디자이너
- 웹퍼블리셔
Archives
- Today
- Total
그냥 개발자 블로그
[javascript] 드래그엔 드롭으로 파일 업로드 간단 예제 본문
특정영역에 파일으 마우스 드래그로 올려 놓으면 파일 업로드 되는 예제
<style>
.uploadbox{
width:800px;
height:300px;
border:1px solid gray;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<div class="uploadbox">
파일을 이곳에 올려주세요.
</div>
<script>
const box = document.querySelector(".uploadbox");
box.addEventListener("dragover",function(e){
e.preventDefault();
});
box.addEventListener("drop",function(e){
e.preventDefault();
if(e.dataTransfer.files[0]){
const form = new FromData();
form.append("file",myFileInput.files[0], "test.jpg");
fetch("/upload",{
method: "POST",
headers: {
"Content-Type": "multipart/form-data",
},
body: form
});
}
});
</script>
'프로그래밍팁 > javascript' 카테고리의 다른 글
javascript cookie 생성 또는 삭제 (0) | 2023.01.31 |
---|---|
[인공지능] 자바스크립트로 머신러닝 학습하기 - 역방향 (2) | 2017.08.03 |
[인공지능] 자바스크립트로 머신러닝 학습하기 - 정방향 (0) | 2017.08.02 |
[인공지능] 자바스크립트로 머신러닝 학습하기 - 원리 (0) | 2017.08.01 |
jquery에서 class를 포함하고 있는지 검사하기 (0) | 2017.03.14 |