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