12
tải xuống tệp bằng yêu cầu ajax
Tôi muốn gửi "yêu cầu tải xuống ajax" khi nhấp vào nút, vì vậy tôi đã thử theo cách này: javascript: var xhr = new XMLHttpRequest(); xhr.open("GET", "download.php"); xhr.send(); download.php: <? header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename= file.txt"); header("Content-Transfer-Encoding: binary"); readfile("file.txt"); ?> nhưng không hoạt động như mong …