有沒有辦法'強制'瀏覽器下載文件,而不是打開它?我試過通過js使用window.open(「file.txt」,「下載」)的方法;但是,Javascript jQuery鏈接下載一個txt文件
但沒有成功。
Thx。
更新:
我做了一個php文件,如下;
<html>
<a href='dl.php?bid=3'>
<php>
$sql="select barquivo from bibilioteca where bid=$_GET[bid]";
$row=mysql_fetch_assoc(mysql_query($sql));
header("Content-Disposition: attachment;filename=biblioteca/$row[barquivo]");
然後它下載一個文件「biblioteca_」0字節。
最好答案是在這個鏈接http://stackoverflow.com/questions/1597732/php-force-file-download-and-ie-yet-again/1597946#1597946 –