我正在尝试阅读 RSS 提要(此处为 Google 新闻提要)并使用 Javascript 从原始代码中获取特定信息。当第二行中的 URL 在 Firefox 中更改为本地文件(我复制粘贴 gNews 并保存为 xml)时,以下代码有效,但当它是如下外部页面时则无效。该代码在 IE 或 Chrome 中的任何条件下都不起作用。有什么建议么?
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","https://news.google.com/news/feeds?ned=us&topic=h&output=rss",false);
try {
xmlhttp.send();
}
catch(exception){
document.write(exception+"");
}
var xmlDoc=xmlhttp.responseXML;
var x=xmlDoc.getElementsByTagName("item");
for (i=0;i<4;i++) {
if(i%2==0) {
document.write("<div id='bottombox'>");
}
var raw=x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue;<br />
var toWrite=""+raw.substring(0,raw.indexOf(" - ",0));
document.write("<a href="+x[i].getElementsByTagName('link')[0].childNodes[0].nodeValue+" style='font-family:Verdana, Geneva, sans-serif; font-size:13px; color:#FFF;'>");
document.write(toWrite);
document.write("</a>");
document.write("<br />");
if(i%2!=0) {
document.write("</div>");
}
}