2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

selectタグについて

Last updated at Posted at 2019-07-16

Selectタグの使い方

最初、このように冗長に書いていました(hamlでの書き方です)


Image from Gyazo

Image from Gyazo

結論

    %ul
    %li
      %label 生年月日
         %span 必須
     %ul
       %li
        %h.birthday
          = select_tag('year',options_for_select(1900..2019),include_blank: '---',class: "birthday")
        %span.tosi 年
          %h.birthday2
           = select_tag('year',options_for_select(1..12),include_blank: '---',class: "birthday2")
         %span.tosi 月
           %h.birthday
            = select_tag('year',options_for_select(1..31),include_blank: '---',class: "birthday")
          %span.tosi 日

そうすると、このように

Image from Gyazo

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?