這個(gè)javascript很好,它不會(huì)開啟一個(gè)新視窗或標(biāo)籤。
window.location.assign(url);
已經(jīng)過去了7年,我不知道它是否適用於IE6,但它在FF和Chrome中會(huì)彈出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);