348件ヒット
[301-348件を表示]
(0.034秒)
別のキーワード
モジュール
-
CGI
:: HtmlExtension (348)
キーワード
- base (12)
- blockquote (24)
- checkbox (24)
-
checkbox
_ group (24) -
file
_ field (12) - form (24)
- hidden (12)
- html (24)
- img (12)
-
multipart
_ form (24) -
password
_ field (12) -
radio
_ group (12) - reset (12)
-
scrolling
_ list (12) - submit (24)
-
text
_ field (12) - textarea (12)
検索結果
先頭4件
-
CGI
:: HtmlExtension # radio _ group(attributes) -> String (205.0) -
タイプが radio である input 要素のリストを生成します。
...が続きます。
@param attributes 属性をハッシュで指定します。
例:
radio_group({ "NAME" => "name",
"VALUES" => ["foo", "bar", "baz"] })
radio_group({ "NAME" => "name",
"VALUES" => [["foo"], ["bar", true], "baz"] })
radio_group({ "NAME"......=> "name",
"VALUES" => [["1", "Foo"], ["2", "Bar", true], "Baz"] })... -
CGI
:: HtmlExtension # reset(attributes) -> String (205.0) -
タイプが reset である input 要素を生成します。
...タイプが reset である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
reset({ "VALUE" => "reset", "ID" => "foo" })
# <INPUT TYPE="reset" VALUE="reset" ID="foo">... -
CGI
:: HtmlExtension # text _ field(attributes) -> String (205.0) -
タイプが text である input 要素を生成します。
...タイプが text である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
text_field({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="text" NAME="name" VALUE="value">... -
CGI
:: HtmlExtension # textarea(attributes) -> String (205.0) -
textarea 要素を生成します。
...textarea 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
textarea("name", 40, 5)
# = textarea({ "NAME" => "name", "COLS" => 40, "ROWS" => 5 })...