=======================
=======================
=======================
출처: http://cd4761.blogspot.com/2017/02/web.html
코딩 연습겸 웹 개발..을 하기전에 보고 배운것부터 정리.. 먼저 다운로드 버튼
<button class="btn" type="submit">다운로드</button>
//button type을 submit으로 지정해주고 id를 download_btn으로 해준다. class는 신경안써도 될듯...?
<script type="text/javascript">
var contextPath = '${contextPath}/';
$(document).ready(function(){
$("#download_btn").click(function() {
download();
});
function download() {
var url = contextPath + "다운로드 url 경로";
location.href=url;
}
</script>
버튼을 클릭하면 download() 함수를 호출하여 url을 통해 다운로드를 실행하면 완료. 쓰고 보니 아무것도 없이 딸랑 저것만 있으면 나중에 봤을때 나도 이해안될것 같다.. 그래도 정리안해놓는것보단 나을거라 생각하며...
=======================
=======================
=======================
'WEB > JavaScript' 카테고리의 다른 글
Node.js로 ECMAScript 모듈을 사용하는 방법 관련(import, export, mjs) 관련 (0) | 2019.12.13 |
---|---|
Node.js 버전 업그레이드 관련(AWS C9 등등) (0) | 2019.12.13 |
[Node.js] Node.js 피차 종료못한 남은 프로세스[무한루프, 잘못된서버종료 등등] 종료 관련 (0) | 2018.11.05 |
[Node.js] Node.js 웹소켓 nodejs-websocket (0) | 2018.11.05 |
[Node.js] iconv 인코딩모듈 설치, 사용 관련 (1) | 2018.10.22 |