るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.026秒)
トップページ > クエリ:IO[x] > クエリ:HtmlExtension[x] > クエリ:password_field[x]

別のキーワード

  1. htmlextension multipart_form
  2. htmlextension form
  3. htmlextension password_field
  4. htmlextension text_field
  5. htmlextension file_field

ライブラリ

モジュール

検索結果

CGI::HtmlExtension#password_field(name = "", value = nil, size = 40, maxlength = nil) -> String (24121.0)

タイプが password である input 要素を生成します。

...th maxlength 属性の値を指定します。

例:
password_field
("name")
# <INPUT TYPE="password" NAME="name" SIZE="40">

password_field
("name", "value")
# <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="40">

password_field
("password", "value", 80, 200)
# <INPUT TYPE="pa...

CGI::HtmlExtension#password_field(attributes) -> String (24111.0)

タイプが password である input 要素を生成します。

...タイプが password である input 要素を生成します。

@param attributes 属性をハッシュで指定します。

例:
password_field
({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="password" NAME="name" VALUE="value">...