codecamp

RSS title, link, 和 description 元素

RSS <title>, <link>,<description> 元素

本节介绍 RSS <item> 元素的三个必要的子元素:<title>、<link> 以及 <description>。


RSS 参考手册 完整 RSS 参考手册

定义和用法

<item> 元素定义 RSS feed 中的一篇文章,该元素有三个必需的子元素:

  • <title> - 定义项目的标题(例如:RSS 教程)
  • <link> - 定义指向项目的超连接(例如://www.w3cschool.cn/rss/)
  • <description> - 描述项目(例如:w3cschool 最新的 RSS 教程)

实例

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
  <title>W3CSchool Home Page</title>
  <link>http://www.w3cschool.cn</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>//www.w3cschool.cn/rss</link>
    <description>New RSS tutorial on W3CSchool</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>//www.w3cschool.cn/xml</link>
    <description>New XML tutorial on W3CSchool</description>
  </item>

</channel>
</rss>

尝试一下 »

RSS 参考手册 完整 RSS 参考手册
RSS lastBuildDate 元素
RSS managingEditor 元素
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }