RSS <enclosure> 元素
定义和用法
<enclosure> 元素允许把媒体文件包含在项目中。
属性
属性 | 描述 |
---|---|
length | 必需。定义媒体文件的长度(以字节计)。 |
type | 必需。定义媒体文件的类型。 |
url | 必需。定义指向该媒体文件的 URL。 |
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>菜鸟教程首页</title> <link>http://www.runoob.com</link> <description>免费编程教程</description> <item> <title>RSS 教程</title> <link>http://www.runoob.com/rss</link> <description>菜鸟教程 Rss 教程</description> <enclosure url="http://www.runoob.com.cc/try/demo_source/movie.mp4" length="78645" type="video/mp4" /> </item> </channel> </rss>
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com