LoginSignup
0
0

More than 1 year has passed since last update.

結合テスト select

Last updated at Posted at 2021-06-09

テキストボックスまたはテキストエリアに文字を入力する

<label for="blog_title">タイトル</label>
<input type="text" value="" name="blog[title]" id="blog_title">
fill_in 'タイトル', with: 'あけましておめでとうございます。'

セレクトボックスを選択する

<label for="japanese_calendar">和暦</label>
<select name="japanese_calendar" id="japanese_calendar">
  <option value="0">明治</option>
  <option value="1">大正</option>
  <option value="2">昭和</option>
  <option value="3">平成</option>
</select>
select '平成', from: '和暦'

https://qiita.com/jnchito/items/607f956263c38a5fec24
https://qiita.com/Hiroaki_Sameshima/items/f1f568fd65d80fe9d433

0
0
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
0
0