564件ヒット
[201-300件を表示]
(0.131秒)
ライブラリ
-
cgi
/ html (480) -
rexml
/ document (72) - uri (12)
クラス
-
REXML
:: Attribute (36) -
REXML
:: Attributes (36) -
URI
:: LDAP (12)
モジュール
-
CGI
:: HtmlExtension (480)
キーワード
- [] (12)
- checkbox (24)
-
checkbox
_ group (24) -
file
_ field (24) - form (48)
- hidden (24)
- html (24)
- img (24)
-
multipart
_ form (48) - namespace (12)
- namespaces (12)
-
password
_ field (24) - prefix (12)
- prefixes (12)
-
radio
_ group (24) - reset (24)
-
scrolling
_ list (24) - submit (24)
-
text
_ field (24) - textarea (24)
-
to
_ string (12)
検索結果
先頭5件
-
CGI
:: HtmlExtension # file _ field(attributes) -> String (210.0) -
タイプが file である input 要素を生成します。
...タイプが file である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
file_field({ "NAME" => "name", "SIZE" => 40 })
# <INPUT TYPE="file" NAME="name" SIZE="40">... -
CGI
:: HtmlExtension # hidden(attributes) -> String (210.0) -
タイプが hidden である input 要素を生成します。
...タイプが hidden である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
hidden({ "NAME" => "name", "VALUE" => "reset", "ID" => "foo" })
# <INPUT TYPE="hidden" NAME="name" VALUE="value" ID="foo">... -
CGI
:: HtmlExtension # img(attributes) -> String (210.0) -
img 要素を生成します。
...img 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
img({ "SRC" => "src", "ALT" => "alt", "WIDTH" => 100, "HEIGHT" => 50 })
# <IMG SRC="src" ALT="alt" WIDTH="100" HEIGHT="50">... -
CGI
:: HtmlExtension # password _ field(attributes) -> String (210.0) -
タイプが password である input 要素を生成します。
...タイプが password である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
password_field({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="password" NAME="name" VALUE="value">... -
CGI
:: HtmlExtension # radio _ button(attributes) -> String (210.0) -
タイプが radio である input 要素を生成します。
...タイプが radio である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
radio_button({ "NAME" => "name", "VALUE" => "value", "ID" => "foo" })
# <INPUT TYPE="radio" NAME="name" VALUE="value" ID="foo">... -
CGI
:: HtmlExtension # radio _ group(attributes) -> String (210.0) -
タイプが radio である input 要素のリストを生成します。
...れる input 要素の name 属性はすべて同じになり、
それぞれの input 要素の後ろにはラベルが続きます。
@param attributes 属性をハッシュで指定します。
例:
radio_group({ "NAME" => "name",
"VALUES" => ["foo", "bar", "baz"] })
radi... -
CGI
:: HtmlExtension # reset(attributes) -> String (210.0) -
タイプが reset である input 要素を生成します。
...タイプが reset である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
reset({ "VALUE" => "reset", "ID" => "foo" })
# <INPUT TYPE="reset" VALUE="reset" ID="foo">... -
CGI
:: HtmlExtension # submit(attributes) -> String (210.0) -
タイプが submit である input 要素を生成します。
...タイプが submit である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
submit({ "VALUE" => "ok", "NAME" => "button1", "ID" => "foo" })
# <INPUT TYPE="submit" VALUE="ok" NAME="button1" ID="foo">... -
CGI
:: HtmlExtension # text _ field(attributes) -> String (210.0) -
タイプが text である input 要素を生成します。
...タイプが text である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
text_field({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="text" NAME="name" VALUE="value">...