当前位置: 首页 > 网络学院 > XML相关教程 > RSS > <textInput>
The <textinput> tag specifies a text input field that should be displayed with the feed.
<textinput> 标签的作用是:指定一个文本输入框供用户输入,它将与频道同步显示。
Note: Most aggregators ignores the <textInput> element.
注意:大多数聚合器都忽略<textInput>元素。
标签 | 描述 |
---|---|
<description> | Required. Defines a description of the text input area 必要参数。定义一个文本输入域描述 |
<name> | Required. Defines the name of the text object in the text input area 必要参数。定义文本输入域中文本对象的名称 |
<link> | Required. Defines the URL of the CGI script that processes the text input 必要参数。定义用于执行文本输入域的CGI脚本程序的URL |
<title> | Required. Defines the label of the submit button in the text input area 必要参数。定义文本输入域中的提交按钮标签 |
<?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0"> <channel> <title>ruanchen Home Page</title> <link>http://www.ruanchen.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.ruanchen.com/tech/school/rss</link> <description>New RSS tutorial on ruanchen</description> </item>
</channel> </rss> |
<textInput> 元素
使用<textInput>元素的方法