RSS <textInput> 元素
❮ 完整的 RSS 参考
定义和用法
<textinput> 标签指定应与提要一起显示的文本输入字段。
提示和注释
注释: 大多数聚合器会忽略 <textInput> 元素。
<textInput> 的子元素
标签 | 描述 |
---|---|
<description> | 必需。定义文本输入区域的描述 |
<name> | 必需。定义文本输入区中文本对象的名称 |
<link> | 必需。定义处理文本输入的 CGI 脚本的 URL |
<title> | 必需。定义文本输入区提交按钮的标签 |
实例
<?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>
<textinput>
<description>Search Google</description>
<title>Search</title>
<link>http://www.google.no/search?</link>
<name>q</name>
</textinput>
<item>
<title>RSS Tutorial</title>
<link>https://www.w3ccoo.com/xml/xml_rss.asp</link>
<description>New RSS tutorial on W3Schools</description>
</item>
</channel>
</rss>
亲自试一试 »
❮ 完整的 RSS 参考