這個javascript很好,它不會開啟一個新視窗或標籤。
window.location.assign(url);
已經過去了7年,我不知道它是否適用於IE6,但它在FF和Chrome中會彈出OpenFileDialog。
var file_path = 'host/path/file.ext'; var a = document.createElement('A'); a.href = file_path; a.download = file_path.substr(file_path.lastIndexOf('/') + 1); document.body.appendChild(a); a.click(); document.body.removeChild(a);
這個javascript很好,它不會開啟一個新視窗或標籤。
已經過去了7年,我不知道它是否適用於IE6,但它在FF和Chrome中會彈出OpenFileDialog。