Latest web development tutorials

RSS title, link, 和description 元素

RSS 參考手冊 完整RSS參考手冊

定義和用法

<item> 元素定義RSS feed 中的一篇文章,該元素有三個必需的子元素:

  • <title> - 定義項目的標題(例如:RSS 教程)
  • <link> - 定義指向項目的超連接(例如:http://www.w3cschool.cc/rss/)
  • <description> - 描述項目(例如:w3school 最新的RSS 教程)

實例

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
<title>W3CSchool Home Page</title>
<link>http://www.w3cschool.cc</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>http://www.w3cschool.cc/rss</link>
<description>New RSS tutorial on W3CSchool</description>
</item>
<item>
<title>XML Tutorial</title>
<link>http://www.w3cschool.cc/xml</link>
<description>New XML tutorial on W3CSchool</description>
</item>

</channel>
</rss>

嘗試一下»

RSS 參考手冊 完整RSS參考手冊