RSS <title>、<link> 以及 <description> 元素
定义和用法
<item> 元素定义 RSS feed 中的一篇文章,该元素有三个必需的子元素:
- <title> - 定义项目的标题(例如:RSS 教程)
- <link> - 定义指向项目的超连接(例如:http://www.51help.tk/rss/)
- <description> - 描述项目(例如:51help 最新的 RSS 教程)
实例
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>51help Home Page</title>
<link>http://www.51help.tk</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>http://www.51help.tk/rss</link>
<description>New RSS tutorial on 51help</description>
</item>
<item>
<title>XML Tutorial</title>
<link>http://www.51help.tk/xml</link>
<description>New XML tutorial on 51help</description>
</item>
</channel>
</rss>