Force Browser to download Image with Javascript window.open?

前端 未结 11 853
感动是毒
感动是毒 2020-11-27 19:37

Is there a way to make an image a download once you click on it (without right-click save image as)?

I\'m using a small Javascript function to call the do

11条回答
  •  攒了一身酷
    2020-11-27 20:12

    Here's a way to force all files in a certain directory to be prompted for a download.

    Requirement

    1. Apache
    2. mod_headers enabled

    In your .htaccess or Apache configuration put the following.

    
        Header set Content-Disposition attachment
        Header set Content-Type application/octet-stream
    
    

提交回复
热议问题