url로 해당 브라우저 아래창으로 다운로드

브라우저의 하단 창으로 파일다운로드(url 방식)

IE에서와 그외 브라우저에서의 방법이 다르다.
window.open(data.url, "_blank", "width=100, height=100");

참고로 data.url 의 값은 window.open(data.url, "_blank", "width=100, height=100"); 이다.

if (browserChecker.ie) { // IE일 경우
    window.open(data.url, "_blank", "width=100, height=100");

}else{    // 그 외의 브라우저(ex. 크롬, firefox 등)
    // a태크 생성해서 해당 url을 넣고 클릭 이벤트 발생시켜준다.
    const link = document.createElement("a"); 
    link.href = data.url;
    link.click();
}

댓글

Designed by JB FACTORY