ringa_lee
不需要Ajax 直接<a href='http://example.com/test.doc' download>下载</a>
<a href='http://example.com/test.doc' download>下载</a>
或者点击链接,php下载
$file = 'test.doc' ; if ( file_exists ( $file )) { header ( 'Content-Description: File Transfer' ); header ( 'Content-Type: application/octet-stream' ); header ( 'Content-Disposition: attachment; filename=' . basename ( $file )); header ( 'Content-Transfer-Encoding: binary' ); header ( 'Expires: 0' ); header ( 'Cache-Control: must-revalidate' ); header ( 'Pragma: public' ); header ( 'Content-Length: ' . filesize ( $file )); ob_clean (); flush (); readfile ( $file ); exit; }
不需要Ajax 直接
<a href='http://example.com/test.doc' download>下载</a>
或者点击链接,php下载