第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

通過 Javascript 打開文本文件

通過 Javascript 打開文本文件

慕哥6287543 2023-09-25 15:44:17
我有一個(gè)名為的文本文件,我想導(dǎo)入該文件的內(nèi)容,然后將其輸出到 HTML 中的一個(gè)段落。我該怎么做呢?
查看完整描述

1 回答

?
江戶川亂折騰

TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超5個(gè)贊

使用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();

}

就我個(gè)人而言,我會(huì)嘗試將 HTML 與 JavaScript 分開。onload='World()所以,如果我們?cè)谀愕臉?biāo)簽中去掉了<body>,并且你像你的test.js頁面一樣使用外部 JavaScript,它會(huì)像:


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


查看完整回答
反對(duì) 回復(fù) 2023-09-25
  • 1 回答
  • 0 關(guān)注
  • 133 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)