我正在学习如何编写一个AJAX Web应用程序。设置IIS的正确方法是什么?

时间:2014-09-23 22:54:17

标签: web-applications

我应该使用IIS吗?我从w3schools.com复制了一个文件,我无法让它在我的本地电脑上工作。有人建议我可能没有正确引用ajax_info.txt。当我尝试使用文件引用时,这也无效。请帮忙。

 <!DOCTYPE html>
   <html>
   <head>
    <script>
    function loadXMLDoc()
    {
    var xmlhttp;
    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("myDiv").innerHTML=xmlhttp.responseText;
    }
    }
    xmlhttp.open("GET","ajax_info.txt",true);
    xmlhttp.send();
    }
    </script>
    </head>
    <body>

    <div id="myDiv"><h2>Let AJAX change this text</h2></div>
    <button type="button" onclick="loadXMLDoc()">Change Content</button>

    </body>
    </html>

我写了自己的ajax_info.txt并在其中加了“hello”。请协助。

1 个答案:

答案 0 :(得分:0)

为了比我之前的评论更精确,文件ajax_info.txt不是由PHP或ASP.NET等服务器进程动态生成的;它是一个常量文件,因此上述内容适用于任何类型的Web服务器。

如果这不起作用,则要么是因为它不在正确的位置,要么在服务器上由于某种原因阻止后缀.txt。如果您已经验证了它的位置,请尝试将其重命名为ajax_info.html。