최신 웹 개발 튜토리얼
 

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


<전체 RSS 참조

정의 및 사용

<item> 요소는 문서 또는 정의 "story" RSS 피드에 있습니다.

<item> 요소는 세 가지 필수 자식 요소가 있습니다 :

  • <title> - 항목의 제목을 정의합니다 (eg RSS Tutorial)
  • <link> - 항목에 하이퍼 링크를 정의합니다 (eg http://www.w3ii.com/xml/xml_rss.html)
  • <description> - 항목을 설명합니다 (eg New RSS tutorial on w3ii)

<?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>
   <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3ii.com/xml/xml_rss.html</link>
    <description>New RSS tutorial on w3ii</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>http://www.w3ii.com/xml</link>
    <description>New XML tutorial on w3ii</description>
  </item>

</channel>
</rss>

»그것을 자신을 시도

<전체 RSS 참조