javascript读取RSS数据

时间:2021-05-26

复制代码 代码如下:
<html>
<head>
<title>javascript读取RSS数据</title>
<METAcontent="text/html;charset=utf-8"http-equiv=Content-Type/>

</head>
<bodyleftmargin="0"topmargin="0">
<font><h3align="center">javascript读取RSS数据</h3></font>
<br>
<tablewidth="90%"align="center"border="0"cellpadding=0cellspacing=0>
<tr>
<tdbgcolor=White><b>新闻中心</b><fontsize="-1">(摘自新浪网)</font><hr></td>
</tr>
<tr>
<tdbgcolor=White>
<divid="container">NewsLoading...</div>
</td>
</tr>
</table>
<scriptlanguage="JavaScript1.2">
//Containerforticker.ModifyitsSTYLEattributetocustomizestyle:
vartickercontainer=''
varxmlsource="http://rss.mydrivers.com/Fitting_News.xml";
varroot;
vartitle;
varlink;
varitems;
varitem;
varimages;
varimage;
vardescription;
if(window.ActiveXObject)
{
//document.write("Microsoft.XMLDOM");
varxmlDoc=newActiveXObject("Microsoft.XMLDOM");
}
elseif(document.implementation&&document.implementation.createDocument)
{
//document.write("document.implementation.createDocument");
varxmlDoc=document.implementation.createDocument("","doc",null);
}
if(typeofxmlDoc!="undefined")
{
//document.write(tickercontainer)
xmlDoc.load(xmlsource)
}
functionfetchxml()
{
if(xmlDoc.readyState==4)
output()
else
setTimeout("fetchxml()",10)
}
functionoutput()
{
vartemp="";
root=xmlDoc.getElementsByTagName("channel")[0];
title=root.getElementsByTagName("title")[0];
//temp=title.firstChild.nodeValue+"<br>";
items=root.getElementsByTagName("item");
for(i=0;i<=items.length-1;i++)
{
item=items[i];
title=item.getElementsByTagName("title")[0];
link=item.getElementsByTagName("link")[0];
description=item.getElementsByTagName("description")[0];
temp=temp+"<fontsize=-1><ahref="+link.firstChild.nodeValue+"target='_bank'>"+title.firstChild.nodeValue+"</a></font><br><br>";
//temp=temp+"<fontsize=-1>"+description.firstChild.nodeValue+"</font><br><br>";
document.getElementById("container").innerHTML=temp;
}
}
if(window.ActiveXObject)
fetchxml()
elseif(typeofxmlDoc!="undefined")
xmlDoc.onload=output
</script>
</body>
</html>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章