gpt4 book ai didi

javascript - 使用 JavaScript 访问 github html 文件

转载 作者:行者123 更新时间:2023-12-01 01:49:57 25 4
gpt4 key购买 nike

我在 github 上有这个 html 文件,我想使用 JavaScript 访问它。我尝试了这个,但没有成功:(我使用的是p5.js,所以设置函数基本上是onload函数)

var htmlfile = "[URL THAT POINTS TO HTML FILE]";

function setup() {
console.log(htmlfile.getElementById('id'))
}

有什么办法可以做到这一点吗?我最好只使用纯 JavaScript 和 p5。

最佳答案

正如评论中所说,向原始 github 页面发送请求可能是获取所需 html 的最佳方式。这是使用 fetch 的示例

document.addEventListener('DOMContentLoaded', getHTML);

function getHTML() {
fetch('https://gist.githubusercontent.com/chrisvfritz/bc010e6ed25b802da7eb/raw/18eaa48addae7e3021f6bcea03b7a6557e3f0132/index.html')
.then((res) => {
return res.text();
})
.then((data) => {
document.write(data);
// get the p tag from the remote html file now we have the html in our document
var firstParagraph = document.getElementsByTagName("p")[0];
console.log(firstParagraph.textContent);
})
}

关于javascript - 使用 JavaScript 访问 github html 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51634495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com