为了账号安全,请及时绑定邮箱和手机立即绑定

通过 Javascript 打开文本文件

通过 Javascript 打开文本文件

慕哥6287543 2023-09-25 15:44:17
我有一个名为的文本文件,我想导入该文件的内容,然后将其输出到 HTML 中的一个段落。我该怎么做呢?
查看完整描述

1 回答

?
江户川乱折腾

TA贡献1851条经验 获得超5个赞

使用XMLHttpRequest,例如:


function World(){

  const xhr = new XMLHttpRequest;

  xhr.open('POST', 'hello_world.txt'); // change url accordingly

  xhr.onload = resp=>{

    document.getElementById('test').textContent = resp.responseText;

  }

  xhr.send();

}

就我个人而言,我会尝试将 HTML 与 JavaScript 分开。onload='World()所以,如果我们在你的标签中去掉了<body>,并且你像你的test.js页面一样使用外部 JavaScript,它会像:


let doc, bod, I; // for use on other loads

addEventListener('load', ()=>{ // same as your body load Event - everything deeper than load is indented

doc = docmuent; bod = doc.body; I = id=>doc.getElementById(id);

const xhr = new XMLHttpRequest;

xhr.open('POST', 'hello_world.txt'); // change url accordingly

xhr.onload = resp=>{

  I('test').textContent = resp.responseText;

}

xhr.send();

}); // end load


查看完整回答
反对 回复 2023-09-25
  • 1 回答
  • 0 关注
  • 81 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信