gpt4 book ai didi

javascript - HTML/Javascript - 从在线文件中获取文本

转载 作者:太空狗 更新时间:2023-10-29 15:42:50 24 4
gpt4 key购买 nike

我有 Shoutcast 输出为 html 文件的信息。

html 文件如下所示:http://216.118.106.247:443/7.html

有什么方法可以将该列表/数组中的最后一项作为字符串放入 Javascript 中吗?

我想在 html 文件中输出歌曲信息,我假设一旦我将它作为字符串输入 JS,我就可以使用 document.write() 函数输出代码。 ..

谢谢!

最佳答案

如果你看http://code.google.com/chrome/extensions/xhr.html ,您需要设置跨源请求,然后您应该能够使用 XMLHttpRequest 来获取数据。

编辑:

var xhr = new XMLHttpRequest();
xhr.onreadystatechange = process;
xhr.open("GET", "http://216.118.106.247:443/7.html", true);
xhr.send();

function process()
{
if (xhr.readyState == 4) {
var resp = JSON.parse(xhr.responseText);

// resp now has the text and you can process it.
alert(resp);
}
}

关于javascript - HTML/Javascript - 从在线文件中获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6086083/

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