12
baixar arquivo usando uma solicitação ajax
Desejo enviar uma "solicitação de download de Ajax" quando clico em um botão, então tentei desta forma: 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"); ?> mas não funciona conforme o esperado, como posso fazer? …