-1

我有一个程序,我在其中使用 ajax 并从名为“text.txt”的文件中获取文本,但我未能成功获取数据

<html>
<head>
<script type="text/javascript">
    function changeText()
    {
        request=new XMLHttpRequest();
        request.onreadystatechange=function()
        {
            if(request.readyState==4 && request.status==200)
            {
                alert(request.responseText);
            }
        }
        request.open("GET","**text.txt**",true);
        request.send();
    }
</script>
</head>
<body>
    <p id="para">Hello world</p>
    <input type="button" value="click to change text" onClick="changeText()"></input>
</body>
</html>

有什么帮助吗?

4

1 回答 1

0

这取决于您使用的浏览器。所以你应该使用模式工厂来为 ajax 创建对象。

有关更多详细信息,请查看xmlhttp

于 2013-03-15T19:54:36.527 回答