最新的Web开发教程
 

RSS <title> , <link> , and <description> Elements


<完整的RSS参考

定义和用法

<channel>元素描述RSS提要,并有三个必需的子元素:

  • <title> -定义通道的标题(eg w3ii Home Page)
  • <link> -定义超链接的通道(eg http://www.w3ii.com)
  • <description> -描述渠道(eg Free web building tutorials)

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
   <title>w3ii Home Page</title>
  <link>http://www.w3ii.com</link>
  <description>Free web building tutorials</description>

</channel>

</rss>

试一试»

<完整的RSS参考