PHP tabanlı bir web sitesinde, ben onlar kısa formu doldurduktan sonra kullanıcılara indirme paketi göndermek istiyorum. Site başlatılan indir söylemek download.com gibi siteleri benzer olmalıdır "indirme bir anda başlayacak."
Birkaç possible approaches Bilmem, ve (hızlı test dayalı) tarayıcı uyumluluğu:
1) Do a window.open pointing to the new file.
*FireFox 3 blocks this.
*IE6 blocks this.
*IE7 blocks this.
2) Create an iframe pointing to the new file.
*FireFox 3 seems to think this is OK. (Maybe it's because I already accepted it once?)
*IE6 blocks this.
*IE7 blocks this.
En azından bu üç tarayıcılar itiraz olmaz ki ben bunu nasıl yapabilirim?
Bonus: Tarayıcı koşullu ifadeler gerektirmeyen bir yöntem var mıdır?
(Ben download.com şartlı iki yöntem kullanır inanıyorum, ama bir ya da çalışmak için alınamıyor.)
Responses and Clarifications:
Q: "Why not point the current window to the file?"
A: That might work, but in this particular case, I want to show them some other content while their download starts - for example, "would you like to donate to this project?"
UPDATE: I have abandoned this approach. See my answer below for reasons.