“Файл Скачать jQuery” Ответ

JQUERY CDN

<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
Nitria

Файл Скачать jQuery

//
//With jquery.fileDownload.js
//custom use with promises
//
$(document).on("click", "a.fileDownloadPromise", function () {
    $.fileDownload($(this).prop('href'))
        .done(function () { alert('File download a success!'); })
        .fail(function () { alert('File download failed!'); });
 
    return false; //this is critical to stop the click event which will trigger a normal file download
});
Rajbits

Ответы похожие на “Файл Скачать jQuery”

Вопросы похожие на “Файл Скачать jQuery”

Больше похожих ответов на “Файл Скачать jQuery” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования