RSS <title>、<link> 以及 <description> 元素
定义和用法
<channel> 元素描述 RSS feed,该元素有三个必需的子元素:
- <title> - 定义频道的标题(例如:w3school 首页)
- <link> - 定义指向频道的超连接(例如:http://www.jbxue.com)
- <description> - 描述频道(例如:免费的网站建设教程)
实例
<?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0"> <channel><title>W3School Home Page</title>
<link>http://www.jbxue.com</link>
<description>Free web building tutorials</description>
</channel> </rss>