DBILITY

ajax download 본문

front-end & ui/javascript

ajax download

DBILITY 2019. 6. 3. 12:19
반응형

그냥 아래와 같이 해봤었다.

기억력이란게 있는지 의심스러운 정도니 기록해 두자.

$.ajax({
	type: 'HEAD',
	url: "/resources/excelSample.xls",
	complete: function () {
		console.log("success");
		location.href="/resources/excelSample.xls";
	},
	error : function () {
		console.log("failure");
	}
});

 

반응형

'front-end & ui > javascript' 카테고리의 다른 글

div move + rotate + resize test  (0) 2021.05.20
div rotate test  (0) 2021.05.18
div drag test  (0) 2021.05.14
EventSource + Spring Server Sent Event  (0) 2021.05.12
pure javascript file upload 테스트  (0) 2021.05.12
Comments