RSS <title>、<link> 以及 <description> 元素
定義和用法
<channel> 元素描述 RSS feed,該元素有三個(gè)必需的子元素:
- <title> - 定義頻道的標(biāo)題(例如:w3school 首頁)
- <link> - 定義指向頻道的超連接(例如:http://chabaoo.cn)
- <description> - 描述頻道(例如:免費(fèi)的網(wǎng)站建設(shè)教程)
實(shí)例
<?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0"> <channel><title>W3School Home Page</title>
<link>http://chabaoo.cn</link>
<description>Free web building tutorials</description>
</channel> </rss>