468件ヒット
[401-468件を表示]
(0.074秒)
ライブラリ
-
cgi
/ html (228) -
rexml
/ document (240)
クラス
-
REXML
:: Attributes (168) -
REXML
:: Element (72)
モジュール
-
CGI
:: HtmlExtension (228)
キーワード
- << (12)
- [] (12)
- []= (12)
- add (12)
-
add
_ attribute (24) -
add
_ attributes (12) -
checkbox
_ group (12) - delete (12)
-
delete
_ all (12) -
delete
_ attribute (12) - each (12)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
file
_ field (12) - form (24)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) - hidden (12)
- html (24)
- img (12)
- length (12)
-
multipart
_ form (24) - namespaces (12)
-
password
_ field (12) - prefixes (12)
-
radio
_ group (12) - reset (12)
-
scrolling
_ list (12) - size (12)
- submit (12)
-
text
_ field (12)
検索結果
先頭5件
-
CGI
:: HtmlExtension # image _ button(attributes) -> String (109.0) -
タイプが image の input 要素を生成します。
...タイプが image の input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
image_button({ "SRC" => "url", "ALT" => "string" })
# <INPUT TYPE="image" SRC="url" ALT="string">... -
CGI
:: HtmlExtension # radio _ button(attributes) -> String (109.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 # reset(attributes) -> String (109.0) -
タイプが reset である input 要素を生成します。
...タイプが reset である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
reset({ "VALUE" => "reset", "ID" => "foo" })
# <INPUT TYPE="reset" VALUE="reset" ID="foo">... -
CGI
:: HtmlExtension # img(attributes) -> String (108.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 # multipart _ form(attributes) -> String (108.0) -
enctype 属性に "multipart/form-data" をセットした form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。
@param attributes 属性をハッシュで指定します。
例:
multipart_form("url"){ "string" }
# <FORM METHOD="post" ACTION="url" ENCTYPE="multipart/form-data">string</FORM>... -
CGI
:: HtmlExtension # multipart _ form(attributes) { . . . } -> String (108.0) -
enctype 属性に "multipart/form-data" をセットした form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。
@param attributes 属性をハッシュで指定します。
例:
multipart_form("url"){ "string" }
# <FORM METHOD="post" ACTION="url" ENCTYPE="multipart/form-data">string</FORM>...