Force Browser to download Image with Javascript window.open?

前端 未结 11 879
感动是毒
感动是毒 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

    Try to change this:

    header("Content-disposition: attachment; filename= ".$file."");
    

    To:

    header("Content-disposition: attachment; filename= ".$file);
    

    If the above doesn't work to you, here a function to force a file to be downloadable:

        
    

提交回复
热议问题