JavaScript 複数ファイルのダウンロードAdvertisementサンプル
複数のファイルを同時にダウンロードする(複数のファイルダウンロードダイアログを表示する。)
※IE6のみ動作確認済
ソースコード<form name="download1" target="target1" action="./sample.zip"></form> <form name="download2" target="target2" action="./sample2.zip"></form> <input type="button" value="ダウンロード" onclick="download()"> <iframe name="target1" width="0" height="0"></iframe> <iframe name="target2" width="0" height="0"></iframe> Advertisement |