るりまサーチ

最速Rubyリファレンスマニュアル検索!
348件ヒット [301-348件を表示] (0.034秒)

別のキーワード

  1. string b
  2. _builtin b
  3. b
  4. b _builtin

モジュール

キーワード

検索結果

<< < ... 2 3 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 })...
<< < ... 2 3 4 >>