Force Browser to download Image with Javascript window.open?

前端 未结 11 881
感动是毒
感动是毒 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 19:52

    If you're on an apache server this is really simple.

    1. Create a file called .htaccess in the directory in which your files exist. For me it was assets/.htaccess.
    2. Add the following to the file AddType application/octet-stream .jpg. You can add a new line for each file extension that you need. E.g. AddType application/octet-stream .pdf
    3. Save your file
    4. Clear your browser cache
    5. Refresh your browser and enjoy!

提交回复
热议问题