384件ヒット
[1-100件を表示]
(0.082秒)
クラス
モジュール
-
CGI
:: HtmlExtension (312) -
CGI
:: QueryExtension (24)
キーワード
-
auth
_ type (12) - checkbox (24)
-
checkbox
_ group (24) -
content
_ type (12) -
file
_ field (24) - form (24)
- hidden (24)
-
multipart
_ form (24) -
password
_ field (24) -
radio
_ group (24) - reset (24)
- submit (24)
-
text
_ field (24)
検索結果
先頭5件
-
Net
:: IMAP :: BodyTypeBasic # extension -> Array | nil (21102.0) -
メッセージの拡張データを返します。
メッセージの拡張データを返します。 -
Net
:: IMAP :: BodyTypeMessage # extension -> Array | nil (21102.0) -
メッセージの拡張データを返します。
メッセージの拡張データを返します。 -
Net
:: IMAP :: BodyTypeMultipart # extension -> Array | nil (21102.0) -
メッセージの拡張データを返します。
メッセージの拡張データを返します。 -
Net
:: IMAP :: BodyTypeText # extension -> Array | nil (21102.0) -
メッセージの拡張データを返します。
メッセージの拡張データを返します。 -
CGI
:: QueryExtension # auth _ type -> String (9118.0) -
ENV['AUTH_TYPE'] を返します。
...ENV['AUTH_TYPE'] を返します。... -
CGI
:: QueryExtension # content _ type -> String (9118.0) -
ENV['CONTENT_TYPE'] を返します。
...ENV['CONTENT_TYPE'] を返します。... -
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") -> String (3101.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...@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="applicat......ion/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 (3101.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...@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="applicat......ion/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 # multipart _ form(action = nil , enctype = "multipart / form-data") -> String (3101.0) -
enctype 属性に "multipart/form-data" をセットした form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...enctype 属性に "multipart/form-data" をセットした form 要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。
@param action action 属性の値を指定します。
@param enctype enctype 属性の値を指定します。......例:
multipart_form{ "string" }
# <FORM METHOD="post" ENCTYPE="multipart/form-data">string</FORM>...