最新的Web開發教程
 

RSS <title> , <link> , and <description> Elements


<完整的RSS參考

定義和用法

<channel>元素描述RSS提要,並有三個必需的子元素:

  • <title> -定義通道的標題(eg w3ii Home Page)
  • <link> -定義超鏈接的通道(eg http://www.w3ii.com)
  • <description> -描述渠道(eg Free web building tutorials)

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
   <title>w3ii Home Page</title>
  <link>http://www.w3ii.com</link>
  <description>Free web building tutorials</description>

</channel>

</rss>

試一試»

<完整的RSS參考