单击按钮时,我正在运行ajax调用。请求命中此功能,只打印出纯文本。我正在这里撞墙。我做错了什么?
$test="<table border=1><tr><td>Cell 1</td><td>Cell 2</td></tr></table>";
header('Content-type: application/vnd.ms-excel');
header('Content-disposition: attachment; filename="BondTracker.xls"');
echo $test;
我只是在我的ajax调用中返回字符串。我是从localhost运行的