我有以下代码:
$.post("./test.php", {
record:id,
opt:'code'
},
function(data){$('#div').html('').queue(function() {
$('#div').html(data).dequeue();
});
});
data
返回文件名,例如“test.xlx”。如何将此文件提供给用户?
算法:
用户点击按钮;
函数生成文件(示例 test.xlx);
创建文件时,将文件下载到用户的计算机;
结束。