AJAX,刷新输入字段
我第一次将 AJAX 与 PHP 和 mySQL 结合使用。 我一直在关注一些有关如何将 AJAX 与 INPUT 字段结合使用的示例和教程。
我有一个带有 2 个输入字段的表单。
- 第一个输入字段:用户输入 4 位数字
- 第二个输入字段:在 mySQL 数据库中查找 4 位数字并在此字段中输出。
大多数示例都基于 div 和 span 中的输出,而我对第二个 INPUT 字段的输出感兴趣。
这怎么可能?
我的 js 文件:
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","include/postalcode.php?q="+str,true);
xmlhttp.send();
}
I am using AJAX for the first time with PHP and mySQL.
I have been following some examples and tutorials on how to use AJAX with INPUT fields.
I have a form with 2 input fields.
- 1st input field: User type in 4 digits
- 2nd input field: The 4 digits are looked up in the mySQL db and outputted on this field.
Most examples are based on output in div's and span's while i am interested in output on my 2nd INPUT field.
How is this possible?
My js-file:
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","include/postalcode.php?q="+str,true);
xmlhttp.send();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您已编写:
而不是 innetHTML 使用值:
You have written :
Instead of innetHTML use value:
您应该能够通过两个更改来遵循示例:
对于输入字段,
它的 ID
You should be able to follow the examples with two changes:
for input fields
its ID