我有一个文本框,当用户输入时,该文本框具有自动完成功能(类似于Google)。我有一个名为" getautocomplete.php"的.php文件。我如何在index.html中引用它?
感谢你
答案 0 :(得分:0)
使用类型化数据发送到php脚本的Javascript ajax示例:
xmlhttp=new XMLHttpRequest();
var typedtxt = document.getElementById("textbox").value;
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert(responseText);
}
}
xmlhttp.open("GET","getautocomplete.php?typedtxt="+typedtxt,true);
xmlhttp.send();
答案 1 :(得分:0)
#call through ajax
#ajax syntax to call
$.post("getautocomplete.php",function(data){
#hence data will have response returned from getautocomplete.php
alert(data);
})