0

我正在尝试学习 AJAX 并按照本网站上的教程进行操作:http: //www.w3schools.com/Ajax/ajax_aspphp.asp

我逐字复制他们网站上的 html 代码,并将其放入本地驱动器上的 html 文件中:我还将“gethint.asp”文件复制到同一文件夹中。所有代码都与示例中的代码 100% 相同。但是当我运行 html 文件时,我可以看到文本和文本字段,但是 asp 功能根本不起作用,而且它似乎在他们的站点上工作得很好?我究竟做错了什么?

<!DOCTYPE html>
<html>
<head>
<script>
function showHint(str)
{
var xmlhttp;
if (str.length==0)
  { 
  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","gethint.asp?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<h3>Start typing a name in the input field below:</h3>
<form action=""> 
First name: <input type="text" id="txt1" onkeyup="showHint(this.value)" />
</form>
<p>Suggestions: <span id="txtHint"></span></p> 

</body>
</html>

gethint.asp 文件:

<%
response.expires=-1
dim a(30)
'Fill up array with names
a(1)="Anna"
a(2)="Brittany"
a(3)="Cinderella"
a(4)="Diana"
a(5)="Eva"
a(6)="Fiona"
a(7)="Gunda"
a(8)="Hege"
a(9)="Inga"
a(10)="Johanna"
a(11)="Kitty"
a(12)="Linda"
a(13)="Nina"
a(14)="Ophelia"
a(15)="Petunia"
a(16)="Amanda"
a(17)="Raquel"
a(18)="Cindy"
a(19)="Doris"
a(20)="Eve"
a(21)="Evita"
a(22)="Sunniva"
a(23)="Tove"
a(24)="Unni"
a(25)="Violet"
a(26)="Liza"
a(27)="Elizabeth"
a(28)="Ellen"
a(29)="Wenche"
a(30)="Vicky"

'get the q parameter from URL
q=ucase(request.querystring("q"))

'lookup all hints from array if length of q>0
if len(q)>0 then
  hint=""
  for i=1 to 30
    if q=ucase(mid(a(i),1,len(q))) then
      if hint="" then
        hint=a(i)
      else
        hint=hint & " , " & a(i)
      end if
    end if
  next
end if

'Output "no suggestion" if no hint were found
'or output the correct values
if hint="" then
  response.write("no suggestion")
else
  response.write(hint)
end if
%>
4

3 回答 3

2


问题可能是您在 file:// 协议中运行 HTML 文件。据我所知,像 .php 和 .asp 这样的服务器文件在 file:// 协议中不起作用。
如果您真的希望它工作,请尝试设置Apache并将您的文件放在您的服务器文件夹中。如果你在 Linux 中,它在 /var/www 中,我不太确定其他操作系统。

祝你好运!

于 2013-11-09T16:31:41.500 回答
0

要使服务器端代码在本地机器上工作,您需要安装一个程序来处理代码。我使用的程序是 xampp,这里有一个链接http://www.apachefriends.org/en/xampp.html

于 2013-11-09T17:27:26.153 回答
0

您需要一台服务器来运行.asp文件。首先我建议您安装WAMPXAMPP等服务器,然后调用 AJAX,您的响应将显示出来。

于 2013-11-12T09:48:45.953 回答