最新のWeb開発のチュートリアル
 

RSS <textInput> Element


<完全な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リファレンス