PHP,加载时提交表单

发布于 2024-12-11 21:08:34 字数 217 浏览 0 评论 0原文

我想在浏览器中访问 PHP 文件时立即提交表单。我该如何做到这一点:最好是在 jQuery 中。

详细信息:

我有一个表单,提交后会将一些数据插入数据库并将用户发送到一个单独的页面。在单独的页面上,我有另一种表单的代码,然后指导用户为他们选择的任何内容付款。

我不希望用户必须单击第二个表单上的“提交”才能付款。那么有没有办法让该表单自动提交,从而引导用户进入付款阶段呢?

I want to submit a form immediately when a PHP file is visited in the browser. How can I do this: Preferably in jQuery.

Details:

I have a form that once submitted inserts some data into a database and sends the user to a separate page. On the separate page, I have code for another form that then directs users to pay for whatever they have selected.

I don't want the user to have to click submit on the second form in order for them to pay. So is there a way to make that form submit automatically and thus direct the user to the payment stage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

太阳公公是暖光 2024-12-18 21:08:34

调用 submit 方法:

$("#formID").submit();

因此,在第二页:

<script>
$(function(){
    $("#your-formID").submit();
});
</script>

Invoke the submit method:

$("#formID").submit();

So, at your second page:

<script>
$(function(){
    $("#your-formID").submit();
});
</script>
拔了角的鹿 2024-12-18 21:08:34

你可以这样做

<body onload="submitForm()" ></body>


<script>
function submitForm()
{
 document.frm.submit();
}
</script>

frm 是表单的名称

you can do this

<body onload="submitForm()" ></body>


<script>
function submitForm()
{
 document.frm.submit();
}
</script>

frm is name of form

梦魇绽荼蘼 2024-12-18 21:08:34

如果该表单是自动提交的,为什么还会存在?使第一个表单直接重定向到第三页并在服务器上处理其余部分。如果客户端不使用数据,则无需将数据发送到客户端。使用 Javascript 自动发布可能无法在每个客户端上运行。通过在服务器端进行操作来消除风险。

Why does that form exist if it is submitted automatically? Make the first form redirect directly to the third page and handle the rest on the server. No need to send the data to the client if it is not used there. And automatically posting using Javascript may not work on each client. Eliminate the risk by doing it server side.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文