使用ajax请求在php中提交表单值

发布于 2024-12-03 03:20:06 字数 506 浏览 0 评论 0原文

好的,所以我尝试在用户完成创建帐户后将用户的信息加载到表单字段中。这有点像“重新检查您的个人信息”,但这里他之前输入的值已经设置好了。我应该如何使用 ajax 来做到这一点。我想使用原型 ajax 来避免干扰性编码。

再次,这些是步骤

1.用户在signUp.php上创建一个帐户

2.他被重定向到edit.php,在那里他检查默认设置的个人信息。

如果我这样做

function setFormData()
{
 new Ajax.requestHTML("edit.php")
 { onSuccess:someFunction()

 });

}

,那么我如何设置表单值,例如

 function someFuncton(ajax)
 {
    $("firstname").value=??
    $("lastname").value=??
    $("country").value=??
 }

okay, so I am trying to load a user's information into form fields after the user has finished creating an account. This is sort of a "re-check your personal info" but here his previously entered values are already set. How should I do so using ajax. I want to use the prototype ajax to avoid obtrusive coding.

Again,these are the steps

1.User creates an account on signUp.php

2.He is redirected to edit.php where he checks his personal info which is set by default.

if I do this

function setFormData()
{
 new Ajax.requestHTML("edit.php")
 { onSuccess:someFunction()

 });

}

then how can I set the form values, like

 function someFuncton(ajax)
 {
    $("firstname").value=??
    $("lastname").value=??
    $("country").value=??
 }

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

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

发布评论

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

评论(1

向日葵 2024-12-10 03:20:06

您可以在 edit.php 中输出带有值的 xml、json 或字符串,解析它并在 someFunction 中使用

you can in the edit.php output an xml, json or string with the values, parse it and use in your someFunction

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