12
डाउनलोड फ़ाइल ajax अनुरोध का उपयोग कर
जब मैं एक बटन पर क्लिक करता हूं तो मैं "अजाक्स डाउनलोड अनुरोध" भेजना चाहता हूं, इसलिए मैंने इस तरह से कोशिश की: जावास्क्रिप्ट: 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"); ?> लेकिन उम्मीद के …