P粉8035278012023-08-24 16:14:42
This javascript is fine, it doesn't open a new window or tab.
window.location.assign(url);
P粉8648728122023-08-24 13:31:41
It's been 7 years and I don't know if it works in IE6, but it pops up the OpenFileDialog in FF and Chrome.
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);