RSS <title>, <link>, and <description> 元素
❮ 完整的 RSS 参考
定义和用法
每个 <item> 元素在 RSS 提要中定义 article 或 "story"。
The <item> 具有三个必需的子元素:
- <title> - 定义项目的标题(例如 RSS 教程)
- <link> - 定义项目的超链接(例如 https://www.w3ccoo.com/xml/xml_rss.asp)
- <description> - 描述项目(例如 W3Schools 上的新 RSS 教程)
实例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>W3Schools Home Page</title>
<link>https://www.w3ccoo.com</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>https://www.w3ccoo.com/xml/xml_rss.asp</link>
<description>New RSS tutorial on W3Schools</description>
</item>
<item>
<title>XML Tutorial</title>
<link>https://www.w3ccoo.com/xml</link>
<description>New XML tutorial on W3Schools</description>
</item>
</channel>
</rss>
亲自试一试 »
❮ 完整的 RSS 参考