在html中引用.php文件而不更改扩展名?

时间:2015-05-29 20:38:48

标签: php html web

我有一个文本框,当用户输入时,该文本框具有自动完成功能(类似于Google)。我有一个名为" getautocomplete.php"的.php文件。我如何在index.html中引用它?

感谢你

2 个答案:

答案 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);
})