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);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)