使用ajax请求在php中提交表单值
好的,所以我尝试在用户完成创建帐户后将用户的信息加载到表单字段中。这有点像“重新检查您的个人信息”,但这里他之前输入的值已经设置好了。我应该如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 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