Download File Using jQuery

2019-01-01 12:55发布

问题:

How can I prompt a download for a user when they click a link.

For example, instead of:

<a href=\"uploads/file.doc\">Download Here</a>

I could use:

<a href=\"#\">Download Here</a>

 $(\'a\').click... //Some jquery to download the file

This way, Google does not index my HREF\'s and private files.

Can this be done with jQuery, if so, how? Or should this be done with PHP or something instead?

回答1:

I might suggest this, as a more gracefully degrading solution, using preventDefault:

$(\'a\').click(function(e) {
    e.preventDefault();  //stop the browser from following
    window.location.href = \'uploads/file.doc\';
});

<a href=\"no-script.html\">Download now!</a>

Even if there\'s no Javascript, at least this way the user will get some feedback.



回答2:

If you don\'t want search engines to index certain files, you can use robots.txt to tell web spiders not to access certain parts of your website.

If you rely only on javascript, then some users who browse without it won\'t be able to click your links.



回答3:

Here\'s a nice article that shows many ways of hiding files from search engines:

http://antezeta.com/news/avoid-search-engine-indexing

JavaScript isn\'t a good way not to index a page; it won\'t prevent users from linking directly to your files (and thus revealing it to crawlers), and as Rob mentioned, wouldn\'t work for all users.
An easy fix is to add the rel=\"nofollow\" attribute, though again, it\'s not complete without robots.txt.

<a href=\"uploads/file.doc\" rel=\"nofollow\">Download Here</a>


回答4:

Yes, you would have to change the window.location.href to the url of the file you would want to download.

window.location.href = \'http://www.com/path/to/file\';


回答5:

By stating window.location.href = \'uploads/file.doc\'; you show where you store your files. You might of course use .htacess to force the required behaviour for stored files, but this might not always be handful....

It is better to create a server side php-file and place this content in it:

header(\'Content-Type: application/octet-stream\');
header(\'Content-Disposition: attachment; filename=\'.$_REQUEST[\'f\']);
readfile(\'../some_folder/some_subfolder/\'.$_REQUEST[\'f\']); 
exit;

This code will return ANY file as a download without showing where you actually store it.

You open this php-file via window.location.href = \'scripts/this_php_file.php?f=downloaded_file\';



回答6:

 var link=document.createElement(\'a\');
 document.body.appendChild(link);
 link.href=url;
 link.click();


回答7:

Hidden iframes can help



回答8:

I suggest you use the mousedown event, which is called BEFORE the click event. That way, the browser handles the click event naturally, which avoids any code weirdness:

(function ($) {


    // with this solution, the browser handles the download link naturally (tested in chrome and firefox)
    $(document).ready(function () {

        var url = \'/private/downloads/myfile123.pdf\';
        $(\"a\").on(\'mousedown\', function () {
            $(this).attr(\"href\", url);
        });

    });
})(jQuery);


回答9:

  • Using jQuery function

        var valFileDownloadPath = \'http//:\'+\'your url\';
    
       window.open(valFileDownloadPath , \'_blank\');
    


回答10:

See here for a similar post on using jQuery to clear forms: Resetting a multi-stage form with jQuery

You may also be running into an issue where the values are being repopulated by the struts value stack. In other words, you submit your form, do whatever in the action class, but do not clear the related field values in the action class. In this scenario the form would appear to maintain the values you previously submitted. If you are persisting these in some way, just null each field value in your action class after persisting and prior to returning SUCCESS.