[javascript] a tag를 이용하여 javascript에서 파일 다운로드하기

깨미·2021년 7월 5일
0

💻 배워가기 💻

목록 보기
7/30
post-thumbnail
function download() {
    var anchor = document.createElement('a');
    anchor.setAttribute('href', 'download.txt'); //path
    anchor.setAttribute('download', 'download.txt'); //file name
    document.body.appendChild(anchor);
    anchor.click(); //<a> tag click
    anchor.parentNode.removeChild(anchor);
}
profile
vis ta vie

0개의 댓글