网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: RSS :: RSS < textInput > 元素

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

RSS < textInput > 元素


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-29 浏览:560 :: ::

Definition and Usage
定义和用法

The <textinput> tag specifies a text input field that should be displayed with the feed.
<textinput> 标签的作用是:指定一个文本输入框供用户输入,它将与频道同步显示。


Tips and Notes
注意点

Note: Most aggregators ignores the <textInput> element.
注意:大多数聚合器都忽略<textInput>元素。


Child Elements of <textInput>
<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
必要参数。定义文本输入域中的提交按钮标签


Example
案例

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
  <title>W3pop Home Page</title>
  <link>http://www.w3pop.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.w3pop.com/tech/school/rss</link>
    <description>New RSS tutorial on W3pop</description>
  </item>
</channel>
</rss>


自我演示

<textInput> 元素
使用<textInput>元素的方法

评论 (0) All