js通过iframe下载附件

来源:互联网 发布:61是什么意思网络用语 编辑:程序博客网 时间:2024/05/17 02:53

js通过iframe下载附件

js:

   $('<iframe/>', {        src: url,        width: 0,        height:0    }).appendTo('#download');

后台php:

header('Content-Description: File Transfer');header('Content-Type: application/octet-stream');header('Content-Disposition: attachment; filename=xxx.doc');header('Content-Transfer-Encoding: binary');header('Expires: 0');header('Cache-Control: must-revalidate');header('Pragma: public');header('Content-Length: ' . filesize($filepath));ob_clean();flush();readfile($filepath);<span style="white-space:pre"></span>


0 0
原创粉丝点击