我正在研究 html 和 js,在其中我以表格格式显示雅虎金融股票。数据以 csv 格式获取。我要js直接从url读取数据
网址是http://ichart.finance.yahoo.com/table.csv?s=RIL.BO
我尝试从 stackoverflow 获得的代码在 localhost url 中工作。
var txtFile = new XMLHttpRequest();
txtFile.open("GET", "http://ichart.finance.yahoo.com/table.csv?s=RIL.BO", true);
txtFile.onreadystatechange = function() {
if (txtFile.readyState === 4) { // Makes sure the document is ready to parse.
if (txtFile.status === 200) { // Makes sure it's found the file.
allText = txtFile.responseText;
lines = txtFile.responseText.split("\n"); // Will separate each line into an array
alert(allText);
}
}
}
谢谢