欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

javascript读取RSS数据

时间:2021-02-06 10:06:16|栏目:JavaScript代码|点击:

复制代码 代码如下:

<html>
 <head>
      <title>javascript读取RSS数据</title>
  <META content="text/html; charset=utf-8" http-equiv=Content-Type />

 </head>
 <body  leftmargin="0" topmargin="0"> 
 <font><h3 align="center">javascript读取RSS数据</h3></font>
 <br>  
 <table width="90%" align="center" border="0" cellpadding=0 cellspacing=0>
  <tr>
   <td bgcolor=White><b>新闻中心</b><font size="-1">(摘自新浪网)</font><hr></td>
  </tr>
  <tr>
   <td  bgcolor=White>
    <div id="container" >News Loading...</div>
   </td>
  </tr>
 </table>
<script language="JavaScript1.2">
 //Container for ticker. Modify its STYLE attribute to customize style:
 var tickercontainer=''
 var xmlsource="http://rss.mydrivers.com/Fitting_News.xml";
 var root;
 var title;
 var link; 
 var items;
 var item;
 var images;
 var image;
 var description;
 if (window.ActiveXObject)
 {
  //document.write("Microsoft.XMLDOM");
  var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
 }
 else if (document.implementation && document.implementation.createDocument)
 {
  //document.write("document.implementation.createDocument");
  var xmlDoc= document.implementation.createDocument("","doc",null);
 }
 if (typeof xmlDoc!="undefined")
 {
  //document.write(tickercontainer)
  xmlDoc.load(xmlsource)
 }  
 function fetchxml()
 {
  if (xmlDoc.readyState==4)
   output()
  else
   setTimeout("fetchxml()",10)
 }
 function output()
 {  
  var temp="";
  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 + "<font size=-1><a href=" + link.firstChild.nodeValue+ " target='_bank'>" + title.firstChild.nodeValue +"</a></font><br><br>";
   //temp = temp +"<font size=-1>" + description.firstChild.nodeValue + "</font><br><br>";
   document.getElementById("container").innerHTML = temp;
  }
 }
 if (window.ActiveXObject)
  fetchxml()
 else if (typeof xmlDoc!="undefined")
  xmlDoc.onload=output
 </script>
</body>
</html>

上一篇:非常实用的ajax用户注册模块

栏    目:JavaScript代码

下一篇:js实现鼠标滑过文字链接色彩变化的效果

本文标题:javascript读取RSS数据

本文地址:http://www.codeinn.net/misctech/58147.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有