Force download a pdf link using javascript/ajax/jquery

前端 未结 7 2013
夕颜
夕颜 2020-11-27 04:51

suppose we have a pdf link \"http://manuals.info.apple.com/en/iphone_user_guide.pdf\"(just for example and to let u know that file is not on my server, i only have the link)

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 05:30

    If htaccess is an option this will make all PDF links download instead of opening in browser

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

提交回复
热议问题