文件-通过ajax读入div。我想我错过了一些小事

发布于 2024-08-11 13:32:27 字数 847 浏览 6 评论 0原文

我正在做一些非常简单的事情,但它不起作用......也许我错过了一些东西。

我需要通过 ajax 读取一个文本文件,并将其放入 div 中。我可以通过ajax轻松写入文件,但不能读取。这就是我所拥有的:

function ajaxLoader(url) {
  if(document.getElementById) {
    var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
  }
  if(x) {
    x.onreadystatechange = function() {
      if(x.readyState == 4 && x.status == 200) {
        el = document.getElementById('content');
        el.innerHTML = x.responseText;
      }
    }

    x.open("GET",url, true);
    x.send(null);
  }
}

<a class="blocklink" href="#" id="readg" onclick="ajaxLoader('guestBook.txt')">Read The Guestbook</a></p>

<div id="content" style="width:600px;">

我一整天都被困在这个问题上。我可以使用所有相同的代码,并将常规 html 文件输出到 div,但不能输出这个 .txt 文件。 txt 文件具有其所需的所有读写权限。谢谢!

马库斯

I'm doing something very simple, and yet it's not working.. maybe I'm missing something.

I need to read a text file, through ajax, and into a div. I can easily write to the file through ajax, but not read. Here is what I have:

function ajaxLoader(url) {
  if(document.getElementById) {
    var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
  }
  if(x) {
    x.onreadystatechange = function() {
      if(x.readyState == 4 && x.status == 200) {
        el = document.getElementById('content');
        el.innerHTML = x.responseText;
      }
    }

    x.open("GET",url, true);
    x.send(null);
  }
}

<a class="blocklink" href="#" id="readg" onclick="ajaxLoader('guestBook.txt')">Read The Guestbook</a></p>

<div id="content" style="width:600px;">

I've been stuck on this all day. I can use all of the same code, and output a regular html file to the div, but not this .txt file. The txt file has all of the read write privileges it needs. Thanks!

Marcus

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

感情废物 2024-08-18 13:32:27

尝试删除该 if(document.getElementById)

您可以提醒您的 .responseText 属性吗?它使用同步模式工作吗?

Try to remove that if(document.getElementById)

Can you alert your .responseText property? It works using a synchronous pattern?

扶醉桌前 2024-08-18 13:32:27

您的 ajaxLoader 函数应返回 false,以便不会跟踪所单击的链接。

Your ajaxLoader function should return false so that the link that is clicked is not followed.

关于从前 2024-08-18 13:32:27

如果您在本地运行代码,您将获得状态 0 而不是状态 200。要处理这两种情况,您可以使用:

if (x.readyState == 4 && (x.status == 0 || x.status == 200))

此外,当您单击链接时,将跟随该链接,因为您尚未取消它。由于 href 是“#”,它会转到同一页面的顶部,但仍然会导致问题。 (一个副作用是,当您按下链接时,页面将滚动到顶部。)通过从 click 事件返回 false 来取消链接:

onclick="ajaxLoader('guestBook.txt');return false;"

If you are running the code locally, you will get the status 0 instead of status 200. To handle both, you can use:

if (x.readyState == 4 && (x.status == 0 || x.status == 200))

Also, when you click the link, the link will be followed as you haven't cancelled it. As the href is "#" it will go to the top of same page, but it can still cause problems. (One side effect is that the page will scroll to the top when you press the link.) Cancel the link from being followed by returning false from the click event:

onclick="ajaxLoader('guestBook.txt');return false;"
诺曦 2024-08-18 13:32:27

想通了..我从未清除过缓存...缓存再次获胜!

Figured it out.. I never cleared the cache... the CACHE WINS AGAIN!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文