Heim > Fragen und Antworten > Hauptteil
P粉8648728122023-08-24 13:31:41
已经过去了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);