“Unduh File JQuery” Kode Jawaban

jQuery CDN

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

Unduh File 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

Jawaban yang mirip dengan “Unduh File JQuery”

Pertanyaan yang mirip dengan “Unduh File JQuery”

Lebih banyak jawaban terkait untuk “Unduh File JQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya