gpt4 book ai didi

javascript - 带链接的表单提交

转载 作者:行者123 更新时间:2023-11-28 14:52:24 25 4
gpt4 key购买 nike

我正在用经典 ASP 构建一个网页,该网页最多包含 10 个链接,这些链接以表单形式包装并由 CSS 控制,以提供滚动和彩色 block 的外观。单击 block /链接时,我需要将 Zip 文件下载给用户,同时将表单提交回自身,以便可以使用此信息更新数据库。然后该页面可供用户下次下载。

我可以将 zip 文件下载到新窗口,但表单提交不一致,也许您可​​以提供建议。我在网上搜索了几个星期,但没有找到答案。

每个链接的构造如下

<table cellspacing="0" cellpadding="0" width="250" border="0">
<form action="<%=request("script_name")%>" method="post" id="form1" name="form1">
<tr style="height:18px;" bgcolor="#e8e8e8">
<td bgcolor="#e6e6e6" align="center">
<a href="http://.....URL of Zip file" onClick="javascript:document.forms(0).submit();" class="dload">DOWNLOAD</a>
<input type="Hidden" name="trak" value="1">
</td>
</tr>
</form>
</table>

最佳答案

使用 document.getElementById("form1").submit() 会比假设此表单始终是文档中的第一个表单更可靠。我认为它也更能跨浏览器兼容。

关于javascript - 带链接的表单提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4335111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com