我有 2 个表单要在一次提交单击时提交,以下载 2 个文件。
这是在 Firefox 中下载 2 个文件,但在 chrome 中仅下载 1 个文件。
我已根据要求编辑并插入了完整的代码。
完整代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>EXPORT INVOICE </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="JavaScript">
function runscript()
{
document.f1.submit();
document.f2.submit();
}
</script>
</head>
<body>
<form name="f1" method="post" action="export-tst-with-header.php" target="_blank">
<table width="810" height="140" border="0" cellpadding="5" cellspacing="0" class="uniq" align="center">
<tr class="uniq">
<td width="363" valign="middle">
<br>
<span class="sty2">Enter to export From Invoice No.:</span> <input type="text" size='10' maxlength='10' name="finv" onblur="showfrom(this.value);">
<span class="sty2">To Invoice No:</span> <input type="text" size='10' maxlength='10' name="tinv" onblur="showto(this.value);">
</td>
</tr>
<tr class="uniq">
<td width="363" valign="top"><div align="center"><br>
<br>
</form>
<form name="f2" method="post" action="export-tst-with-header2.php" target="_blank">
</form>
<input type="button" value="Export" onClick="runscript();" />
<a href='index.htm' target='_parent'><input name="close" type="button" value="Close !"></a>
</div></td>
</tr>
</table>
<br>
</body>
</html>