504件ヒット
[1-100件を表示]
(0.025秒)
ライブラリ
-
cgi
/ html (480) -
rdoc
/ context (12) -
rexml
/ streamlistener (12)
クラス
-
RDoc
:: Context (12)
モジュール
-
CGI
:: HtmlExtension (480) -
REXML
:: StreamListener (12)
キーワード
- attlistdecl (12)
- checkbox (24)
-
checkbox
_ group (24) -
file
_ field (24) - form (48)
- hidden (24)
- html (24)
- img (24)
-
multipart
_ form (48) -
password
_ field (24) -
radio
_ group (24) - reset (24)
-
scrolling
_ list (24) - submit (24)
-
text
_ field (24) - textarea (24)
検索結果
先頭5件
- RDoc
:: Context # attributes -> [RDoc :: Attr] - CGI
:: HtmlExtension # image _ button(attributes) -> String - CGI
:: HtmlExtension # radio _ button(attributes) -> String - CGI
:: HtmlExtension # image _ button(src = "" , name = nil , alt = nil) -> String - CGI
:: HtmlExtension # radio _ button(name = "" , value = nil , checked = nil) -> String
-
RDoc
:: Context # attributes -> [RDoc :: Attr] (21102.0) -
追加された RDoc::Attr の配列を返します。
追加された RDoc::Attr の配列を返します。 -
CGI
:: HtmlExtension # image _ button(attributes) -> String (9208.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 (9208.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 # image _ button(src = "" , name = nil , alt = nil) -> String (9103.0) -
タイプが image の input 要素を生成します。
...の値を指定します。
@param name name 属性の値を指定します。
@param alt alt 属性の値を指定します。
例:
image_button("url")
# <INPUT TYPE="image" SRC="url">
image_button("url", "name", "string")
# <INPUT TYPE="image" SRC="url" NAME="name" ALT="string">... -
CGI
:: HtmlExtension # radio _ button(name = "" , value = nil , checked = nil) -> String (9103.0) -
タイプが radio である input 要素を生成します。
...e value 属性の値を指定します。
@param checked 真ならば checked 属性を設定します。
例:
radio_button("name", "value")
# <INPUT TYPE="radio" NAME="name" VALUE="value">
radio_button("name", "value", true)
# <INPUT TYPE="radio" NAME="name" VALUE="value" CHECKED>... -
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") -> String (3204.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...tion action 属性の値を指定します。デフォルトは現在の CGI スクリプト名です。
@param enctype enctype 属性の値を指定します。デフォルトは "application/x-www-form-urlencoded" です。
例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x......-www-form-urlencoded">string</FORM>
form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get", "url"){ "string" }
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>... -
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") { . . . } -> String (3204.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...tion action 属性の値を指定します。デフォルトは現在の CGI スクリプト名です。
@param enctype enctype 属性の値を指定します。デフォルトは "application/x-www-form-urlencoded" です。
例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x......-www-form-urlencoded">string</FORM>
form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get", "url"){ "string" }
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>... -
CGI
:: HtmlExtension # form(attributes) -> String (3109.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...ると、ブロックを評価した結果が内容になります。
@param attributes 属性をハッシュで指定します。
例:
form({"METHOD" => "post", ENCTYPE => "enctype"}){ "string" }
# <FORM METHOD="post" ENCTYPE="enctype">string</FORM>
@see CGI::HtmlExtension#multipart_form... -
CGI
:: HtmlExtension # form(attributes) { . . . } -> String (3109.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...ると、ブロックを評価した結果が内容になります。
@param attributes 属性をハッシュで指定します。
例:
form({"METHOD" => "post", ENCTYPE => "enctype"}){ "string" }
# <FORM METHOD="post" ENCTYPE="enctype">string</FORM>
@see CGI::HtmlExtension#multipart_form...