我是 PHP 代码函数,现在我希望该函数会在单击按钮时出现。
这是我的 PHP 代码函数:
function prints()
{
header('Content-type: application/excel');
$filename = 'LEGO_PRODUCTION_RESULT_NG.xls';
header('Content-Disposition: attachment; filename='.$filename);
$data = "<html xmlns:x='urn:schemas-microsoft-com:office:excel'>
<head>
<!--[if gte mso 9]>
<xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>Sheet 1</x:Name>
<x:WorksheetOptions>
<x:Print>
<x:ValidPrinterInfo/>
</x:Print>
</x:WorksheetOptions>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
</x:ExcelWorkbook>
</xml>
<![endif]-->
</head>";
echo $data;
}
HTML 按钮:
<input type="button" value="Export to Excel"/>
那么如何添加 JS 函数以在单击按钮上调用 PHP 函数呢?