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