Bạn có thể sử dụng Tải xuống tệp jQuery plugin cho mục đích của bạn, đó là một ví dụ đơn giản mà bạn có thể sử dụng trong ứng dụng khách của mình để quản lý tệp đã tải xuống:
$.fileDownload('urlForYourFile')
.done(function () {
alert('File download a success!');
$.post('/postChatFileSend', {fileName: 'fileName'}, function(data) {
//Check the response, if the status propery is true, the file must have been removed from the server
});
})
.fail(function() {
alert('An error has ocurred');
});
Tại đây có ví dụ khác