<完整的RSS參考
定義和用法
在<textinput>標記指定應與飼料來顯示一個文本輸入框。
提示和注意
Note:大多數聚合器忽略<textInput>元素。
的子元素<textInput>
標籤 | 描述 |
---|---|
<description> | 需要。 定義了文本輸入區的說明 |
<name> | 需要。 定義文本對象的名稱在文本輸入區 |
<link> | 需要。 定義了CGI腳本處理所述文本輸入的URL |
<title> | 需要。 定義的標籤中的文本輸入區域提交按鈕 |
例
<?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>
<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>http://www.w3ii.com/xml/xml_rss.html</link>
<description>New RSS tutorial on w3ii</description>
</item>
</channel>
</rss>
試一試»
<完整的RSS參考