gpt4 book ai didi

javascript - 使用 javascript 提交的表单只能在 Google Chrome 中使用一次

转载 作者:数据小太阳 更新时间:2023-10-29 05:46:05 24 4
gpt4 key购买 nike

我有简单的形式。

<form target="_blank" action="somescript.php" method="Post" id="simpleForm">
<input type="hidden" name="url" value="http://...">
<input type="hidden" name="code" value="wrxosf">
</form>

...还有一些 anchor 链接

<a href="#" onclick="$('#simpleForm').submit();return false;">Do it!</a>

它在 FireFox 或 IE 中运行良好,但在 Google Chrome 中运行良好。Chrome 执行一次,然后链接变得不可点击。

最佳答案

也有这样的问题。

决定是在每次提交之前向 URL 添加一些随机内容。

HTML:

<form action="go.php" method="post" target="_blank" id="go">
...
</form>

JavaScript(jQuery):

$('#go').attr('action','go.php?'+Math.random()*1000).submit();

关于javascript - 使用 javascript 提交的表单只能在 Google Chrome 中使用一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1623659/

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