RSS <textInput>元素
<textinput> 元素定义了一个文本输入框,这个文本输入框应该和当前 channel 一起显示
warn: 注意: 大多数聚合器忽略 <textInput> 元素
语法
<textinput> <description>搜索内容</description> <title>搜索</title> <link>https://www.twle.cn</link> <name>s</name> </textinput>
<textInput>的子元素
如果元素/属性没有 required 则表示可选,就是可以不定义
标签 | 描述 |
---|---|
<description> required | 定义对文本输入域的描述 |
<name> required | 定义在文本输入域中的文本对象的名称 |
<link> required | 定义处理文本输入的 CGI 脚本的 URL |
<title> required | 定义文本输入域中的提交按钮的标注 (label) |
范例
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>简单编程首页</title> <link>https://www.twle.cn</link> <description>简单教程[www.twle.cn]以编程开发所需掌握的语言和知识入手...</description> <textinput> <description>搜索内容</description> <title>搜索</title> <link>https://www.twle.cn</link> <name>s</name> </textinput> <item> <title>HTML 基础教程</title> <link>https://www.twle.cn/l/yufei/html/html-basic-index.html</link> <description>HTML 基础教程</description> </item> <item> <title>Python2 基础教程</title> <link>https://www.twle.cn/l/yufei/python27/python27-basic-index.html</link> <description>Python2 基础教程</description> </item> </channel> </rss>