亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

RSS <title>、<link> 以及 <description> 元素

定義和用法

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

  • <title> - 定義項目的標題(例如:RSS 教程)
  • <link> - 定義指向項目的超連接(例如:http://chabaoo.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://chabaoo.cn</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://chabaoo.cn/rss</link>
    <description>New RSS tutorial on W3School</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>http://chabaoo.cn/xml</link>
    <description>New XML tutorial on W3School</description>
  </item>
</channel>

</rss>