赞
踩
var a = document.createElement("a");
a.href = "http://XXX.com/2123123123123.exe";
a.download ="test.exe";
a.click();
download属性不生效情况:
header("Content-Disposition: attachment; filename=123.txt");
let file_input = $("<input type='file'>"); file_input.click(); // 触发上传选择文件 file_input.on("change", function() { // 文件选择后触发 let file = file_input[0].files[0] file = file_input.get(0).files[0]; // 第二种方式 let formData = new FormData(); formData.append('file', file); let index = layer.load(); $.ajax({ url: "http://...", type: 'POST', cache: false, data: formData, processData: false, // 是否转换为查询字符串 contentType: false, // 内容编码类型 dataType: "json", // 预期服务器返回的数据类型 success: function (data) { }, error: function (XmlHttpRequest, textStatus, errorThrown) { }, complete: function () { } }); });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。