javascript - opening hidden iframe for file download on document ready

前端 未结 1 1606

I’m trying to use this trick to open a file download dialog on document ready. The same trick has worked another time for me, but that time the iframe was added after an aja

1条回答
  •  不思量自难忘°
    2021-01-16 13:25

    It works just fine, assuming that the MIME is of a type that will start a download, for example application/octet-stream. You may be encountering an issue where the browser is rendering it and not offering a download due to an in-built pdf reader.

    $(document).ready(function(){
    var url='data:application/octet-stream,hello%20world';
    var _iframe_dl = $('